blob: 0bb8115cea702d19a7db30ab83e9e13b05115306 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="styles.css" rel="stylesheet">
<title>Document</title>
</head>
<body>
<div id="top">
<!--Header-->
<div id="header">
<span id="logo">Header Logo</span>
<span>
<a>header link one</a>
<a>header link two</a>
<a>header link three</a>
</span>
</div>
<!--Hero-->
<div id="hero">
<div id="text">
<h1>
This website is awesome
</h1>
<h6>
This website has some subtext that goes here under
the main title. It's a smaller font and the color
is lower contrast.
</h6>
<button>Sign up</button>
</div>
<img>
</div>
</div>
<div id="info">
</div>
<div id="quote">
</div>
<div id="bottom">
</div>
<footer>
</footer>
</body>
</html>
|