-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
84 lines (71 loc) · 3.41 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<title>landing-page</title>
<meta charset="utf-8">
<link rel="stylesheet" href="css/styles.css">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="section-one">
<div class="header">
<a class="header-logo" href="#">Header Logo</a>
<ul class="header-links">
<li class="header-link-item"><a class="header-link" href="#">header link one</a></li>
<li class="header-link-item"><a class="header-link" href="#">header link one</a></li>
<li class="header-link-item"><a class="header-link" href="#">header link one</a></li>
</ul>
</div>
<div class="content-one">
<div class="content-one-left">
<h1>This website is awesome</h1>
<p class="content-one-text">This website has some subtext that goes here under the main title. it's a smaller font and the color is lower contrast.</p>
<button class="button-sign">Sign up</button>
</div>
<div class="content-one-right">
<img class="content-one-image" src="img/test_card.jpg" alt="this is a placeholder for an image">
</div>
</div>
</div>
<div class="section-two">
<h2>Some random information.</h2>
<div class="content-two">
<div class="image-two img-one">
<img src="img/test_patterns_180.jpg" alt="placeholder image one">
<p>this is some subtext under an illustration or image</p>
</div>
<div class="image-two img-two">
<img src="img/test_patterns_180.jpg" alt="placeholder image two">
<p>this is some subtext under an illustration or image</p>
</div>
<div class="image-two img-three">
<img src="img/test_patterns_180.jpg" alt="placeholder image three">
<p>this is some subtext under an illustration or image</p>
</div>
<div class="image-two img-four">
<img src="img/test_patterns_180.jpg" alt="placeholder image four">
<p>this is some subtext under an illustration or image</p>
</div>
</div>
</div>
<div class="section-three">
<div class="content-three">
<p><em>This is an inspiring quote, or a testimonial from a customer. Maybe it's just filling up space, or maybe people will actually read it. Who know? All I know is that looks nice.</em></p>
<h3>-Somedude, From Somewhere</h3>
</div>
</div>
<div class="section-four">
<div class="content-four">
<div class="content-four-left">
<h3>Call to action! it's time!</h3>
<p>Sign up for our product by clicking that button right over there!</p>
</div>
<button class="button-sign button-two">Sign up</button>
</div>
</div>
<div class="footer">
<p>Copyright © The Odin Project 2021</p>
</div>
</body>
</html>