-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
130 lines (118 loc) · 6.07 KB
/
services.html
File metadata and controls
130 lines (118 loc) · 6.07 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
<!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>
<header class="top-bar">
<div class="container">
<h1>S&J</h1>
<img id="menu-button" src="img/nav-hamburger.png" alt="nav-open-button" onclick="changeImage()">
</div>
<nav class="drop-menu">
<a href="index.html">Home</a>
<a href="services.html">Services</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<div class="container">
<div class="jumbotron-container">
<img src="img/services/services-jumbotron.png" alt="Glass Ceiling">
<div class="statement">Services</div>
</div>
<div class="services-container">
<p>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.</p>
<!-- Tab Navigator Content: I used the same text for each tab to make it easy, Note that the images and text do change on click but you can just use the same text for each tab element. All the images should be in the img folder. -->
<div class="tabs">
<div class="tabs-links">
<div class="tabs-link" data-tab="1">Pre-Contruction</div>
<div class="tabs-link tabs-link-selected" data-tab="2">Construction</div>
<div class="tabs-link" data-tab="3">Design Build</div>
<div class="tabs-link" data-tab="4">Sustainability</div>
</div>
<div class="tabs-items">
<div class="tabs-item" data-tab="1">
<div class="tabs-item-title">Pre-Construction</div>
<div class="tabs-item-description">
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.
</div>
<div class="tabs-item-description"><img src="img/services/services-tab-pre-construction-img.png" alt=""> </div>
</div>
<div class="tabs-item tabs-item-selected" data-tab="2">
<div class="tabs-item-title">Construction</div>
<div class="tabs-item-description">
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.
</div>
<div class="tabs-item-description"><img src="img/services/services-tab-construction-img.png" alt=""> </div>
</div>
<div class="tabs-item" data-tab="3">
<div class="tabs-item-title">Design Build</div>
<div class="tabs-item-description">
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.
</div>
<div class="tabs-item-description"><img src="img/services/services-tab-design-build-img.png" alt=""> </div>
</div>
<div class="tabs-item" data-tab="4">
<div class="tabs-item-title">Sustainability</div>
<div class="tabs-item-description">
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.
</div>
<div class="tabs-item-description"><img src="img/services/services-tab-sustainability-img.png" alt=""> </div>
</div>
</div>
</div>
</div>
<footer>
<div class="footer-content">
<div class="location">
<h4>Interested in starting a project? <br> Let’s talk:</h4>
<form action="input">
<input type="text" value="Enter email">
</form>
<p>We'll never share your email with anyone else.</p>
</div>
<div class="location">
<h4>New York</h4>
<p>123 Lane
<br>Suite 100
<br>Albany, NY 12345
<br>202 555 0144<br>
</p>
</div>
<div class="location">
<h4>Florida</h4>
<p>Ocean Drive
<br>Suite 201
<br>Orlando, FL 22345
<br>502 555 0144<br>
</p>
</div>
<div class="location">
<h4>California</h4>
<p>Mountain Street
<br>Suite 105
<br>San Diego, CA 22345
<br>702 555 0144 <br>
</p>
</div>
</div>
<h5>Copyright © 2018 Smith and Jones</h5>
</footer>
<script src="js/services.js"></script>
<script src="js/menu.js"></script>
</body>
</html>