-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
39 lines (30 loc) · 994 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>Clear</title>
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
<section>
<h1>Clearly</h1>
<h2>Clearly</h2>
<h3>Clearly</h3>
<h4>Clearly</h4>
<h5>Clearly</h5>
<p>Small paragraph containing nothing in particular. I'm not even sure this is long enough to be a paragraph</p>
<div class="row">
<div class="col-medium-6 col-small-12">
<div style="background-color:red;height:200px;width:100%;">
</div>
</div>
<div class="col-medium-6 col-small-12 hidden-medium-up">
<div style="background-color:blue;height:200px;width:100%;">
</div>
</div>
</div>
</section>
</body>
</html>