forked from constructorlabs/responsive-news-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlive.html
45 lines (38 loc) · 1.07 KB
/
live.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
<!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">
<link rel="stylesheet" href="clive.css">
<title>Sheila and Phoebe</title>
</head>
<body>
<div class="app">
<header class="app__header ">
<h1 class="header__logo">logo</h1>
<ul class="header__list">
<li class="item1">button 1</li>
<li class="item2">button 2</li>
<li class="item3">button 3</li>
</ul>
</header>
<div class="app__main">
<div class="main__nav">
<p>nav</p>
</div>
<div class="main__content">
<p>bodycopy</p>
</div>
<div class="main__sidebar">
<p>sidebar</p>
</div>
</div>
<footer class="app__footer">
<div class="footer__item footer__notes">notes</div>
<div class="footer__item footer__address">address</div>
<div class="footer__item footer__map">map</div>
</footer>
</div>
</body>
</html>