-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (70 loc) · 2.47 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <!--<![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Awesome Website</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="nav-bar">
<h1>Header Logo</h1>
<ul>
<li>First Page</li>
<li>Second Page</li>
<li>Third Page</li>
</ul>
</div>
<div class="head-content">
<div class="signup">
<h2>This website is awesome</h2>
<p>Some random description about the website.</p>
<button>Sign up</button>
</div>
<img alt="One big picture">
</div>
<div class="display">
<h3>Some random information.</h3>
<div class="display-items">
<div class="display-item">
<img alt="pic 1"/>
<p>Some random text</p>
</div>
<div class="display-item">
<img alt="pic 2"/>
<p>Some random text</p>
</div>
<div class="display-item">
<img alt="pic 3"/>
<p>Some random text</p>
</div>
<div class="display-item">
<img alt="pic 4"/>
<p>Some random text</p>
</div>
</div>
</div>
<div class="quote">
<p>An inspiring quote from thor about beer and milk.</p>
<p id="credit">-Thor, God of Hammers</p>
</div>
<div class="foot-signup">
<div class="blue-box">
<div class="title-subtext">
<p id="title">Call to action! It's time!</p>
<p id="subtext">Sign up for the product over there -></p>
</div>
<button>Sign up</button>
</div>
</div>
<div class="footer">
Copyright. CoolWebsite (R).
</div>
</body>
</html>