-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstructure.html
52 lines (46 loc) · 1.29 KB
/
structure.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
<!doctype html>
<html>
<head>
<title>Your Title</title>
<link rel="stylesheet" href="css/reset.css"> <!-- Resets browser styles -->
<link rel="stylesheet" href="css/global.css"> <!-- Your stylesheet -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" /> <!-- Triggers responsive -->
</head>
<body>
<header id="masthead"> <!-- Start Header area -->
<nav>
<div class="container">
<h1 id="brand"></h1>
<ul> <!-- Main navigation -->
<li>
<a href="">About Me</a>
</li>
<li>
<a href="">Work</a>
</li>
<li>
<a href="">Contact Me</a>
</li>
</ul>
</div>
</nav>
</header>
<section id="hero"> <!-- Full bleed hero image -->
<img src="https://farm2.staticflickr.com/1537/23943182953_5a44956bc9_o.jpg" alt="New England" />
</section>
<section id="main-content"> <!-- Main body content -->
<div class="container">
<section class="column"> <!-- First column -->
</section>
<section class="column"><!-- Second column -->
</section>
<section class="column"> <!-- Third column -->
</section>
</div>
</section>
<section id="social-links"> <!-- Full width section, above footer -->
</section>
<footer> <!-- Footer -->
</footer>
</body>
</html>