-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHTML-basic-layout.html
68 lines (61 loc) · 2.38 KB
/
HTML-basic-layout.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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>A Basic Layout </title>
<style>
*{
margin: 0;
padding: 0;
}
.h-h1{
background-color:darkorange;
color: rgb(218, 230, 238);
padding: 25px 0px;
margin-bottom: 25px;
text-align: center;
}
main{
background-color: lightsteelblue;
width: 600px;
border: 5px red solid;
padding: 10px;
margin:0 auto;
}
img{
width: 100%;
}
p{
color: whitesmoke;
font-size: 18x;
}
footer{
text-align: center;
background-color: darkblue;
color: lightsalmon;
padding: 25px 0px;
margin-top: 25px;
}
</style>
</head>
<body>
<header>
<h1 class="h-h1">Welcome to Dinopedia</h1>
</header>
<main>
<h2>About Dinosaurs</h2>
<h3>Their history</h3>
<p>Dinosaurs are a diverse group of reptiles of the clade Dinosauria. </p>
<img src="img/dino2.jpg" alt="dinosaurs">
<p> They first appeared during the Triassic period, between 243 and 233.23 million years ago, although the exact origin and timing of the evolution of dinosaurs is the subject of active research.</p>
<p>They became the dominant terrestrial vertebrates after the Triassic–Jurassic extinction event 201 million years ago; their dominance continued through the Jurassic and Cretaceous periods. Reverse genetic engineering and the fossil record both demonstrate that birds are modern feathered dinosaurs, having evolved from earlier theropods during the late Jurassic Period.</p>
<p>As such, birds were the only dinosaur lineage to survive the Cretaceous–Paleogene extinction event 66 million years ago. Dinosaurs can therefore be divided into avian dinosaurs, or birds; and non-avian dinosaurs, which are all dinosaurs other than birds. This article deals primarily with non-avian dinosaurs.</p>
</main>
<footer>
<p>"There's an incomparable rush that comes from finding dinosaur bones. You know you're the first person to lay hands on a critter that lived 80 or 90 million years ago."
</p>
<h4>- Jack Horner</h4>
</footer>
</body>
</html>