-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (41 loc) · 1.13 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
<!DOCTYPE html>
<head>
<title>humanCSS</title>
<link rel="stylesheet" type="text/css" href="human.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="menu">
<div class="menu-logo">
<a href="#">
<img src="img/logo.png">
</a>
</div>
<ul class="menu-right">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div class="row full-height">
<div class="col">
<h1>Content</h1>
<p>This is some content</p>
<button>I'm a good button! </button>
</div>
</div>
<div class="row-5c full-height center-all bg-gray">
<div class="col-2">
<h1>Content</h1>
<p>This is some content</p>
</div>
<div class="col-3">
<h1>Content</h1>
<p>This is some content</p>
</div>
<div class="col-4">
<h1>Content</h1>
<p>This is some content</p>
</div>
</div>
</body>