-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathannelida.html
More file actions
74 lines (74 loc) · 2.46 KB
/
annelida.html
File metadata and controls
74 lines (74 loc) · 2.46 KB
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
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<title>Oceans</title>
<meta charset="utf-8"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="annelida.css">
</head>
<body>
<header class="container">
<div class="row">
<h1 class="col-sm-4">Marine Diversity</h1>
<nav class="col-sm-8 text-right">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<div class="dropdown">
<button class="dropbtn">Phyla</button>
<div class="dropdown-content">
<a href="porifera.html">Porifera</a>
<a href="cnidaria.html">Cnidaria</a>
<a href="chordata.html">Chordata</a>
<a href="echinoderm.html">Echinoderm</a>
<a href="molluca.html">Mollusca</a>
<a href="anthropoda.html">Arthropoda</a>
<a href="annelida.html">Annelida</a>
</div>
</div>
</nav>
</div>
</header>
<section class="jumbotron">
<div class="container">
<div class="row text-center">
<h2>Annelida</h2>
<h3>Segmented Worms</h3>
</div>
</div>
</section>
<section class="container">
<div class="row">
<div class="col-xs-6">
<h2>Characteristics</h2>
<ul>
<li>Bilaterally symmetrical creatures</li>
<li>Have a coelom: a fluid-filled cavity between the outer body wall and the gut.</li>
<li>Around 9000 species exist</li>
</ul>
</div>
<div class="col-xs-6">
<h2>Examples</h2>
<ul>
<li>Marine: Polychaeta (tube worms, bristle worms)</li>
<li>Terrestrial: Clitellata (earth worms, leeches)</li>
<li>Bobbit worm</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-6">
<img src="http://rjfisherjoanides.pbworks.com/f/1299707850/I10-82-annelid.jpg"/>
</div>
<div class="col-xs-6">
<img src="https://reefnation.com/wp-content/uploads/2016/06/b-extended-charityowl.jpg"/>
</div>
</div>
</section>
<footer class="container">
<div class="row">
<p class="col-sm-4">© 2018 Ashley Song</p>
</div>
</footer>
</body>
</html>