-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (89 loc) · 3.27 KB
/
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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!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.0">
<link rel="shortcut icon" href="img/favicon.ico">
<link rel="stylesheet" href="css/vendor/fluidbox.min.css">
<link rel="stylesheet" href="css/main.css">
<title>Gumba Template</title>
</head>
<body>
<header>
<div id="logo-container">
<div id="logo"><a href="/">Gumba</a></div>
<div id="subtitle">A design agency from Amsterdam</div>
</div>
<!-- <nav>
<ul>
<li><a href="#">Link 1</a></li>
<li><a href="#">Link 2</a></li>
<li><a href="#">Link 3</a></li>
<li><a href="mailto:your@address.com" class="bordered">Contact</a></li>
</ul>
</nav> -->
</header>
<div id="content">
<section class="intro">
<h1>Hello, <span class="nl"></span>we are here to help you.</h1>
<p>
Gumba is a simple single-page website template. This is the place where you would normally introduce yourself. You can easily change the template to fit your needs by changing the text, photos and styles.
</p>
</section>
<section class="row">
<div class="col-full">
<h2>Example title</h2>
<p>
Gumba is a fictional agency from Amsterdam, The Netherlands. This is the place where you would normally introduce yourself. You can easily change the template to fit your needs by adding text or changing the colors and styles.
</p>
</div>
</section>
<!--<section class="row">
<div class="photo-grid">
<a href="img/example-photo-b.jpg" rel="lightbox" class="col-2"><img src="img/example-photo-b.jpg" alt="Example photo"></a>
<a href="img/example-photo-c.jpg" rel="lightbox" class="col-2"><img src="img/example-photo-c.jpg" alt="Example photo"></a>
<a href="img/example-photo-a.jpg" rel="lightbox" class="col-1"><img src="img/example-photo-a.jpg" alt="Example photo"></a>
</div>
</section>-->
<section class="row">
<div class="col">
<h2>Contact</h2>
<p>
Want to work with us? Just send us an <a href="mailto:#">email</a>.
</p>
</div>
<div class="col">
<h2>Follow us</h2>
<p>
We are on <a href="http://twitter.com/rickwaalders">Twitter</a>, <a href="http://dribbble.com/rickwaalders">Dribbble</a> and <a href="http://instagram.com/rickwaalders">Instagram</a>.
</p>
</div>
</section>
<section class="row">
<div class="col-full">
<p>
© 2015 - This is a free website template by <a href="http://www.pixelsbyrick.com">Rick Waalders</a>
</p>
</div>
</section>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
if (!window.jQuery)
{
document.write('<script src="js/vendor/jquery.1.11.min.js"><\/script>');
}
</script>
<script src="js/vendor/jquery.fluidbox.min.js"></script>
<script src="js/main.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'YOUR_GOOGLE_ANALYTICS_ID', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>