-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
152 lines (144 loc) · 5.45 KB
/
services.html
File metadata and controls
152 lines (144 loc) · 5.45 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Services</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<nav>
<div class="navbar">
<div>S&J</div>
<img src="./img/nav-hamburger.png" alt="Menu" />
</div>
</nav>
<!-- Menu -->
<div class="menu-items">
<!-- toggle menu-items_revealed -->
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="services.html">Services</a>
</li>
<li>
<a href="index.html">Contact</a>
</li>
</ul>
</div>
<header class="services-jtron">
<div class="jtron-header">Services</div>
</header>
<!-- Jumbotron -->
<div class="services-content">
<div class="intro">Services include: completely synergize resource taxing relationships via premier niche markets. Professionally cultivate
one-to-one customer service with robust ideas. Dynamically innovate resource-leveling customer service for state of the
art customer service.
</div>
<div class="tabs">
<div class="each-tab" data-tab="0">
Pre-Construction
</div>
<div class="each-tab" data-tab="1">
Construction </div>
<div class="each-tab" data-tab="2">
Design Build </div>
<div class="each-tab" data-tab="3">
Sustainability </div>
</div>
<div class="all-tab-content">
<div class="tab-content" data-content="0">
<!-- toggle "tab-content_revealed" -->
<h3>Pre-Construction</h3>
<div class="tab-content-info">
<span>Completely synergize resource taxing relationships via premier niche markets. Professionally cultivate one-to-one customer
service with robust ideas. Dynamically innovate resource-leveling customer service for state of the art customer service.
<br>
<br> Phosfluorescently engage worldwide methodologies with web-enabled technology. Interactively coordinate proactive e-commerce
via process-centric "outside the box" thinking. Completely pursue scalable customer service through sustainable potentialities.
</span>
<img src="./img/services/services-tab-pre-construction-img.png" alt="img">
</div>
</div>
<div class="tab-content" data-content="1">
<h3>Construction</h3>
<div class="tab-content-info">
<span>Completely synergize resource taxing relationships via premier niche markets. Professionally cultivate one-to-one customer
service with robust ideas. Dynamically innovate resource-leveling customer service for state of the art customer service.
<br>
<br> Phosfluorescently engage worldwide methodologies with web-enabled technology. Interactively coordinate proactive e-commerce
via process-centric "outside the box" thinking. Completely pursue scalable customer service through sustainable potentialities.
</span>
<img src="./img/services/services-tab-construction-img.png" alt="img">
</div>
</div>
<div class="tab-content" data-content="2">
<h3>Design Build</h3>
<div class="tab-content-info">
<span>Completely synergize resource taxing relationships via premier niche markets. Professionally cultivate one-to-one customer
service with robust ideas. Dynamically innovate resource-leveling customer service for state of the art customer service.
<br>
<br> Phosfluorescently engage worldwide methodologies with web-enabled technology. Interactively coordinate proactive e-commerce
via process-centric "outside the box" thinking. Completely pursue scalable customer service through sustainable potentialities.
</span>
<img src="./img/services/services-tab-design-build-img.png" alt="img">
</div>
</div>
<div class="tab-content" data-content="3">
<h3>Sustainability</h3>
<div class="tab-content-info">
<span>Completely synergize resource taxing relationships via premier niche markets. Professionally cultivate one-to-one customer
service with robust ideas. Dynamically innovate resource-leveling customer service for state of the art customer service.
<br>
<br> Phosfluorescently engage worldwide methodologies with web-enabled technology. Interactively coordinate proactive e-commerce
via process-centric "outside the box" thinking. Completely pursue scalable customer service through sustainable potentialities.
</span>
<img src="./img/services/services-tab-sustainability-img.png" alt="img">
</div>
</div>
</div>
</div>
<footer>
<div class="footer-content">
<div class="contact">
<h4>Interested in starting a project?
<br>
<br>Let's talk:</h4>
<input placeholder="Enter email"></input>
<div>We'll never share your email with anyone else.</div>
</div>
<div class="locations">
<h4>New York</h4>
<br>123 Lane
<br>Suite 100
<br>Albany, NY 12345
<br>202 555 0144
</div>
<div class="locations">
<h4>Florida</h4>
<br>Ocean Drive
<br>Suite 201
<br>Orlando, FL 22345
<br>502 555 0144
</div>
<div class="locations">
<h4>California</h4>
<br>Mountain Street
<br>Suite 105
<br>San Diego, CA 22345
<br>702 555 0144
</div>
</div>
<div class="copyright">Copyright © 2018 Smith and Jones</div>
</footer>
<!-- Footer -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.19.1/TweenMax.min.js"></script>
<script src="js/index.js"></script>
<script src="js/services.js"></script>
</body>
</html>