-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (60 loc) · 1.55 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>layout</title>
<link rel="stylesheet" href="style.css" type="text/css" media="all" title="no title" charset="utf-8">
<link rel="stylesheet" href="node_modules/normalize.css/normalize.css" type="text/css" media="all" title="no title" charset="utf-8">
</head>
<body>
<header>
header
</header>
<div class="wrapper">
<div class="sidebar">
Sidebar
</div>
<div class="content">
<section>
This Repo includes <br/>
<ul>
<li> Browser Sync server</li>
<li> Auto refresh when files are updated</li>
<li> Responsive layout</li>
<li> 100% HTML & CSS </li>
</ul>
</section>
<section>
This layout includes <br/>
<ul>
<li> Responsive layout</li>
<li> Fixed header </li>
<li> Sticky footer </li>
<li> Left responsive sidebar </li>
</ul>
</section>
<section>
Customizable<br/>
<ul>
<li>
Header height: 50px;
</li>
<li>
Footer height: 50px;
</li>
<li>
Sidebar width: 200px;
</li>
<li>
Responsive at browser width: 1200px
</li>
</ul>
</section>
</div>
<footer>
Footer here
</footer>
</div>
</body>
</html>