-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (60 loc) · 2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0, width=device-width" />
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/layout.css">
<title>10 Pound Gorilla</title>
</head>
<body>
<header>
<div class="container">
<h1>10 pound gorilla</h1> <!-- invisible in CSS; left here for DOM -->
<img class="header__logo" src="imgs/logo.png" alt="10poundgorilla logo">
</div>
</header>
<div class="jumbotron">
<h2 class="jumbotron__header">WEB & DIGITAL MARKETING</h2>
</div>
<div class="whatwedo">
<h3 class="title">WHAT WE DO</h3>
<h4 class="subtitle">Web & Digital Solutions</h4>
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="whatwedo__service"><span class="whatwedo__service__text">WEB</span></div>
</div>
<div class="col-md-4">
<div class="whatwedo__service"><span class="whatwedo__service__text">DESIGN</span></div>
</div>
<div class="col-md-4">
<div class="whatwedo__service"><span class="whatwedo__service__text">MARKETING</span></div>
</div>
</div>
</div>
</div>
<footer>
<div class="container">
<div class="row">
<div class="col-md-8">
<div class="footer__content__left pull-left">
<h3 class="title">WE TURN YOUR VISION INTO REALITY</h3>
<p class="footer__content__left__text">We help turn your vision into reality. Our team delivers
custom craftsmanship working with your team every step of the way to ensure your online success.</p>
</div>
</div>
<div class="col-md-4">
<div class="footer__content__right">
<img src="imgs/eye.jpg" alt="eye">
</div>
</div>
</div>
</div>
</footer>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/general.js"></script>
</body>
</html>