-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.html
46 lines (46 loc) · 2.53 KB
/
example.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
<html>
<head>
<meta name="viewport" content= "width=device-width, initial-scale=1.0">
<title>FeatherFrame</title>
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/grid.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="container">
<section class="twoCol-center margin-100">
<div>
<h1>Even width</h1>
<img class="full" src="images/placeholder.png" alt="">
<p>FeatherFrame was created to provide a simple, responsive starter document for New Pragmatic students to work from when they are first becoming acquainted with HTML & CSS.</p>
</div>
<div>
<h1>Even width</h1>
<p>FeatherFrame was created to provide a simple, responsive starter document for New Pragmatic students to work from when they are first becoming acquainted with HTML & CSS.</p>
</div>
</section>
<section class="twoCol-left margin-100">
<div>
<h1>Wide width</h1>
<p>FeatherFrame was created to provide a simple, responsive starter document for New Pragmatic students to work from when they are first becoming acquainted with HTML & CSS.</p>
</div>
<div>
<h1>Narrow width</h1>
<img class="full" src="images/placeholder.png" alt="">
<p>FeatherFrame was created to provide a simple, responsive starter document for New Pragmatic students to work from when they are first becoming acquainted with HTML & CSS.</p>
</div>
</section>
<section class="twoCol-right margin-100">
<div>
<h1>Narrow width</h1>
<p>FeatherFrame was created to provide a simple, responsive starter document for New Pragmatic students to work from when they are first becoming acquainted with HTML & CSS.</p>
</div>
<div>
<h1>Wide width</h1>
<img class="full" src="images/placeholder.png" alt="">
<p>FeatherFrame was created to provide a simple, responsive starter document for New Pragmatic students to work from when they are first becoming acquainted with HTML & CSS.</p>
</div>
</section>
</div>
</body>
</html>