-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab03b.html
68 lines (65 loc) · 3.48 KB
/
lab03b.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<h1> CSS and HTML</h1>
<p> The selfie Dolphin website using html and css.</p>
<link rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css"
integrity="sha384-r4NyP46KrjDleawBgD5tp8Y7UzmLA05oM1iAEQ17CSuDqnUK2+k9luXQOfXJCJ4I"
crossorigin="anonymous">
<link rel="stylesheet" href="lab03a.css">
<link href="https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600;700&display=swap"
rel="stylesheet">
</head>
<body>
<div class="container">
<h3>Basic Info</h3>
<p> Common Name: Dolphins</p>
<p> Scientific Name: Odontoceti</p>
<p> Size: up to 32 feet</p>
<p>Weight: Up to 6 tons</p>
<p> Dolphins are small-toothed cetaceans that are easily recognizable by their curved mouths,
which gives them a permanent "smile." There are 36 dolphin species, found in every ocean.
Most dolphins are marine and live in the ocean or brackish waters along coastlines.
There are a few species, however, like the South Asian river dolphin
and the Amazon river dolphin, or boto, that live in freshwater streams and rivers.</p>
</div>
<div class="container">
<h3> Threat</h3>
<p> For centuries, people have hunted dolphins for their meat and blubber.
Today, their main threat comes from being caught accidentally in commercial fishing nets.
Dolphins must rise regularly to the surface to breathe—becoming
entangled in nets prevents this, leading to drowning. For maine
dolphins, warming ocean temperatures because of climate change have
caused some of their primary food sources to move into deeper, cooler water.
Furthermore, marine heatwaves, also caused by climate change, appear
to have a negative affect on dolphins' reproductive rates and ability to survive.</p>
<p> In addition to hunting and entanglement in fishing gear,
freshwater dolphins face the additional threat of dams fragmenting and degrading habitat.</p>
</div>
<div class="container">
<h3> Argentina Selfie Dolphin</h3>
<p>An endangered baby dolphin was killed on a beach in Argentina after the animal
was plucked from the water and passed around by beachgoers for petting and photos. </p>
<p> The incident, which took place at the beach resort town of Santa Teresita,
has drawn wide condemnation from animal lovers and activists, including the
Argentine Wildlife Foundation (AWF), which released a statement urging people
to return dolphins encountered near the shore to ocean waters.</p>
<p> The main threat to dolphins is said to be fishing netts and dams.
But as it turns out curious swimmers and other beachgoers are also a top threat.
Video footage of the incident shows the animal being scooped up by a man and
quickly surrounded by a curious mob eager to touch the animal. The
miniature dolphin, no more than a few feet long, is eventually left to
die in the mud, where it can be seen lying motionless. At no point
in the footage does it appear that anyone in the crowd intervened or
attempted to return the animal to the water.
</p>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/js/bootstrap.min.js"
integrity="sha384-oesi62hOLfzrys4LxRF63OJCXdXDipiYWBnvTl9Y9/TRlw5xlKIEHpNyvvDShgf/"
crossorigin="anonymous"></script>
</body>
</html>