-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (89 loc) · 3.57 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
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="dark-background">
<div class="content">
<div class="nav">
<h3 class="logo-text">
Header Logo
</h3>
<div class="nav-links">
<a>Header Link One</a>
<a>Header Link Two</a>
<a>Header Link Three</a>
</div>
</div>
<div class="dark-content-body">
<div class="left">
<h1>This website is Awesome</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>
</div>
<div class="right">
<p>This is a placeholder image container</p>
</div>
</div>
</div>
</div>
<div class="white-background">
<div class="content">
<h2>Some random information.</h2>
<div class="white-content-body">
<div class="spotlighted-item">
<div class="spotlight-image"></div>
<p>This is some subtext under an illustration or image.</p>
</div>
<div class="spotlighted-item">
<div class="spotlight-image"></div>
<p>This is some subtext under an illustration or image.</p>
</div>
<div class="spotlighted-item">
<div class="spotlight-image"></div>
<p>This is some subtext under an illustration or image.</p>
</div>
<div class="spotlighted-item">
<div class="spotlight-image"></div>
<p>This is some subtext under an illustration or image.</p>
</div>
</div>
</div>
</div>
<div class="grey-background">
<div class="content">
<div class="quote">
<p>"Inflation: It is a bit like trying to light a bonfire or a traditional BBQ on a damp day. If you put an accelerant like gasoline on it you can go from no fire to a loud ‘Whoosh!’ and find that you have also set fire to the garden fence."</p>
</div>
<div class="author">
<p>- Terry Smith, Chief Executive & CIO Fundsmith</p>
</div>
</div>
</div>
<div class="white-background">
<div class="content">
<div class="call-to-action">
<div class="top">
<p>Call to action! It's time!</p>
</div>
<div class="bottom">
<p>Sign up for our product by clicking this button!</p>
<button>Sign Up</button>
</div>
</div>
</div>
</div>
<div class="dark-background">
<div class="content">
<div class="footer">
<p> Made By Euan Williams - </p>
<a href="https://github.com/EuanRW"> GitHub</a>
</div>
</div>
</div>
</body>
</html>