-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (63 loc) · 1.77 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Odin CSS</title>
<link rel="stylesheet" type="text/css" href="style.css">
<body>
<section class="section1">
<header class="header">
<div class="logo">
<a href="#">Header Logo</a>
</div>
<ul>
<li><a href="#">Header Link one</a></li>
<li><a href="#">Header Link two</a></li>
<li><a href="#">Header Link three</a></li>
</ul>
</header>
<div class="banner">
<div class="title">
<h1>This Website is awesome</h1>
<p>This Website has some subtext that goes here under the main title.
It's a smaller font and the color is lower contrast.
</p>
<a href="#">Sign up</a>
</div>
<div class="imgBox">
<span>
<h2>this is a placeholder for an image</h2>
</span>
</div>
</div>
</section>
<section class="section2">
<div class="title2">
<h2>Some random information</h2>
<ul>
<li>this is some subtext under an illustration or image.</li>
<li>this is some subtext under an illustration or image.</li>
<li>this is some subtext under an illustration or image.</li>
<li>this is some subtext under an illustration or image.</li>
</ul>
</div>
<div class="banner2">
<p class="quote">
This is an inspiring quote, or testimonial from a customer. Maybe it's just filling up space, or maybe people will actually read it. Who knows? All I know is that i looks nice.
<span>-Thor, God of Thunder</span>
</p>
</div>
</section>
<footer class="footer">
<div class="cta">
<h3>Call to action! it's time!</h3>
<h4>Sign up for our product by clicking that button right over there!</h4>
<a href="#">Sign up</a>
</div>
<div class="copyright">
<p>Copyright Ⓒ The Leo Walker Project</p>
</div>
</footer>
</body>
</html>