-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbanded.html
More file actions
92 lines (91 loc) · 4.17 KB
/
banded.html
File metadata and controls
92 lines (91 loc) · 4.17 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Foundation 5</title>
<!-- If you are using CSS version, only link these 2 files, you may add app.css to use for your overrides if you like.-->
<link rel="stylesheet" href="foundation/css/normalize.css">
<link rel="stylesheet" href="foundation/css/foundation.css">
<!-- If you are using the gem version, you need this only-->
<!-- link(rel='stylesheet', href='css/main.css')-->
<script src="foundation/js/vendor/custom.modernizr.js"></script>
</head>
<body>
<!-- Header and Nav-->
<div class="row">
<div class="large-3 columns">
<h1>
<!-- img(src='http://placehold.it/400x100&text=Logo')--><img src="/logo/standard.png">
</h1>
</div>
<div class="large-9 columns">
<ul class="button-group right">
<li><a href="/offering.html" class="button">Offering</a></li>
<li><a href="/approach.html" class="button">Approach</a></li>
<li><a href="/case-studies.html" class="button">Case Studies</a></li>
<li><a href="/team.html" class="button">Team</a></li>
<li><a href="/contact.html" class="button">Contact</a></li>
</ul>
</div>
</div>
<!-- End Header and Nav-->
<!-- First Band (Image)-->
<div class="row">
<div class="large-12 columns"><img src="http://placehold.it/1000x400&text=[img]">
<hr>
</div>
</div>
<!-- Second Band (Image Left with Text)-->
<div class="row">
<div class="large-4 columns"><img src="http://placehold.it/400x300&text=[img]"></div>
<div class="large-8 columns">
<h4>This is a content section.</h4>
<div class="row">
<div class="large-6 columns">
<p>Bacon ipsum dolor sit amet nulla ham qui sint exercitation eiusmod commodo, chuck duis velit. Aute in reprehenderit, dolore aliqua non est magna in labore pig pork biltong. Eiusmod swine spare ribs reprehenderit culpa. Boudin aliqua adipisicing rump corned beef.</p>
</div>
<div class="large-6 columns">
<p>Pork drumstick turkey fugiat. Tri-tip elit turducken pork chop in. Swine short ribs meatball irure bacon nulla pork belly cupidatat meatloaf cow. Nulla corned beef sunt ball tip, qui bresaola enim jowl. Capicola short ribs minim salami nulla nostrud pastrami.</p>
</div>
</div>
</div>
</div>
<!-- Third Band (Image Right with Text)-->
<div class="row">
<div class="large-8 columns">
<h4>This is a content section.</h4>
<p>Bacon ipsum dolor sit amet nulla ham qui sint exercitation eiusmod commodo, chuck duis velit. Aute in reprehenderit, dolore aliqua non est magna in labore pig pork biltong. Eiusmod swine spare ribs reprehenderit culpa. Boudin aliqua adipisicing rump corned beef.</p>
<p>Pork drumstick turkey fugiat. Tri-tip elit turducken pork chop in. Swine short ribs meatball irure bacon nulla pork belly cupidatat meatloaf cow. Nulla corned beef sunt ball tip, qui bresaola enim jowl. Capicola short ribs minim salami nulla nostrud pastrami.</p>
</div>
<div class="large-4 columns"><img src="http://placehold.it/400x300&text=[img]"></div>
</div>
<!-- Footer-->
<footer class="row">
<div class="large-12 columns">
<hr>
<div class="row">
<div class="large-6 columns">
<p>© Copyright no one at all. Go to town.</p>
</div>
<div class="large-6 columns">
<ul class="inline-list right">
<li><a href="#">Link 1</a></li>
<li><a href="#">Link 2</a></li>
<li><a href="#">Link 3</a></li>
<li><a href="#">Link 4</a></li>
<li><a href="#">Link 5</a></li>
<li><a href="#">Link 6</a></li>
<li><a href="#">Link 7</a></li>
</ul>
</div>
</div>
</div>
</footer>
<script src="foundation/js/jquery.js"></script>
<script src="foundation/js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>