-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample-1.html
45 lines (41 loc) · 1.14 KB
/
example-1.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">
<title>Example One - Responsive Design</title>
<link rel="stylesheet" href="./style.css">
<style>
.grid {
border: 1px solid blue;
float: left;
margin: 10px;
min-height: 100px;
padding: 10px;
}
@media (min-width: 1000px) {
}
@media (max-width: 1000px) and (min-width: 600px) {
}
@media (max-width: 600px) {
}
</style>
</head>
<body>
<div class="container clearfix">
<div class="grid">Item 1</div>
<div class="grid">Item 2</div>
<div class="grid">Item 3</div>
<div class="grid">Item 4</div>
<div class="grid">Item 5</div>
<div class="grid">Item 6</div>
</div>
<div id="contents">
<h3>Table of Contents</h3>
<ul>
<li><a href="./example-1.html">Example 1 - Responsive Design</a></li>
<li><a href="./example-2.html">Example 2 - Clock</a></li>
<li><a href="./example-3.html">Example 3 - Guess the Number</a></li>
</ul>
</div>
</body>
</html>