forked from constructorlabs/responsive-design
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (38 loc) · 1001 Bytes
/
index.html
File metadata and controls
40 lines (38 loc) · 1001 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Layout 2</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="app">
<header class="masthead">
<h1 class="masthead__logo">LOGO</h1>
<ul class="masthead__controls">
<li>button 1</li>
<li>button 2</li>
<li>button 3</li>
</ul>
</header>
<div class="content">
<nav class="content__nav">
<p>nav</p>
</nav>
<main class="content__body">
<p>bodycopy</p>
</main>
<aside class="content__sidebar">
<p>sidebar</p>
</aside>
</div>
<footer class="footer">
<div class="footer__notes footers">notes</div>
<address class="footer__address footers">address</address>
<div class="footer__map footers">map</div>
</footer>
</div>
</body>
</html>