-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrid.html
51 lines (50 loc) · 1.63 KB
/
grid.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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Foundation | Welcome</title>
<link rel="stylesheet" href="css/foundation.min.css" />
<script src="js/vendor/modernizr.js"></script>
</head>
<body>
<div class="row">
<aside class="large-3 columns">
<p>test</p>
</aside>
<section class="large-9 columns">
<p>this is for a whole nine columns - a much larger width than the comparative three columns</p>
</section>
</div>
<div class="row">
<div class="large-8 columns">
<p>test - medium 8</p>
<img src="img/sfmeeting.jpg" alt="San Fran Meeting Room">
</div>
<div class="large-4 columns">
<img src="img/hongkong.jpg" alt="HongKong Meeting Room">
<p>this is for a four columns - a much larger width than the comparative columns</p>
</div>
</div>
<div class="row">
<div class="medium-6 columns">
<p>test - equal size 6</p>
<img src="img/SanFran.jpg" alt="San Francisco">
</div>
<div class="medium-5 medium-offset-1 columns">
<img src="img/paris.jpg" alt="Paris Meeting Room">
<p>this is for a six columns - a much larger width than the comparative columns</p>
</div>
</div>
<div class="row">
<div class="large-6 large-centered columns">
<p>This is one really big column that goes all the way across the page. Lots of room to talk about lots of different things here.</p>
</div>
</div>
<script src="js/vendor/jquery.js"></script>
<script src="js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>