-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
57 lines (33 loc) · 1.12 KB
/
test.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
<!DOCTYPE HTML>
<html>
<head>
<title> Marine Life Wesite </title>
<style type= "text/css">
body {
background-image: url('http://cdn.zmescience.com/wp-content/uploads/2012/11/marine-life.jpg');
}
p {
border: 3px solid green;
background-color: blue;
}
.orange {
color: orange;}
.yellow{
color: yellow;
}
</style>
</head>
<body>
<p>
<marquee>
<h1 class="yellow"> <em><strong>Marine Life</strong> </em></h1>
</marquee>
</p>
<p class="orange"> Marine life is a beautiful and amazing part of life. Much of the world's marine life is <em>undiscovered</em>. <br>Some people even think that previously thought to be extinct animals may be hiding in the deepest darkest parts of the ocean. </br>
</p>
<p class="yellow"> The marine life that lives in coral reefs are the most beautiful creatures. <br> Ranging from rainbow corals to laughing dolphins, the ocean world is , <em>amazing</em>. </br> </p>
<p class="orange"> More info on
<a href= "https://en.wikipedia.org/wiki/Marine_biology"> marine biology </a>
</p>
</body>
</html>