-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
407 lines (359 loc) · 15.8 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
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
<!DOCTYPE html>
<html>
<title>AST Workgroups</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css"> -->
<link rel="stylesheet" href="./w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body,h1,h2,h3,h4,h5,h6 {font-family: "Lato", sans-serif;}
body, html {
height: 100%;
color: #777;
line-height: 1.8;
background-color: #f2f2f2;
}
/* Create a Parallax Effect */
.bgimg-1, .bgimg-2, .bgimg-3 {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: initial;
}
/* First image (Logo. Full height) */
.bgimg-1 {
background-image: url('./images/pbsurf03.jpg');
min-height: 100%;
}
/* Second image (Portfolio) */
.bgimg-2 {
background-image: url('./images/pbsurf06.jpg');
min-height: 400px;
}
/* Third image (Contact) */
.bgimg-3 {
background-image: url('./images/pbsurf09.jpg');
min-height: 400px;
}
.w3-wide {letter-spacing: 10px;}
.w3-hover-opacity {cursor: pointer;}
/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-width: 640px) {
.bgimg-1, .bgimg-2, .bgimg-3 {
background-attachment: scroll;
}
}
/**
//Card CSS
.card {
box-shadow: 1px 1px 2px 1px #666666;
background-color: #f2f2f2;
border-width: thin;
border-color: #f2f2f2;
border-radius: 0px;
max-width: 300px;
margin: 10px;
text-align: center;
}
.container {
padding: 8px 8px 8px 8px;
}
img {
border-radius: 10px 10px 0 0;
}
.centered {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.title {
background-color: #f2f2f2;
color: #666666;
font-size: 16px;
border: thin;
border-color: #d9d9d9;
}
button {
border: thin;
border-color: #d9d9d9;
border-radius: 0px 0px 10px 10px;
outline: 0;
display: inline-block;
padding: 8px;
color: #666666;
background-color: #f2f2f2;
text-align: center;
cursor: pointer;
width: 100%;
font-size: 18px;
}
a {
text-decoration: none;
font-size: 16px;
color: black;
}
*/
button:hover, a:hover {
opacity: 0.7;
}
</style>
<body>
<!-- Navbar (sit on top) -->
<div class="w3-top">
<div class="w3-bar" id="myNavbar">
<a class="w3-bar-item w3-button w3-hover-black w3-hide-medium w3-hide-large w3-right" href="javascript:void(0);" onclick="toggleFunction()" title="Toggle Navigation Menu">
<i class="fa fa-bars"></i>
</a>
<a href="#home" class="w3-bar-item w3-button">AST WORKING GROUPS</a>
<!-- <a href="#" class="w3-bar-item w3-button w3-hide-small w3-right w3-hover-red"><i class="fa fa-search"></i></a> -->
<a href="https://twitter.com/AST_Florida/" class="w3-bar-item w3-button w3-hide-small w3-right"><i class="fa fa-twitter material-icons" aria-hidden="true"></i></a>
<a href="https://www.meetup.com/" class="w3-bar-item w3-button w3-hide-small w3-right"><i class="fa fa-meetup material-icons" aria-hidden="true"></i></a>
<a href="https://github.com/" class="w3-bar-item w3-button w3-hide-small w3-right"><i class="fa fa-github material-icons" aria-hidden="true"></i></a>
<a href="#about" class="w3-bar-item w3-button w3-hide-small w3-right"><i class="fa fa-user"></i> ABOUT</a>
<a href="#portfolio" class="w3-bar-item w3-button w3-hide-small w3-right"><i class="fa fa-th"></i> WORKGROUPS</a>
<a href="#contact" class="w3-bar-item w3-button w3-hide-small w3-right"><i class="fa fa-envelope"></i> CONTACT</a>
</div>
<!-- Navbar on small screens -->
<div id="navDemo" class="w3-bar-block w3-white w3-hide w3-hide-large w3-hide-medium">
<a href="#about" class="w3-bar-item w3-button" onclick="toggleFunction()">ABOUT</a>
<a href="#portfolio" class="w3-bar-item w3-button" onclick="toggleFunction()">WORKGROUPS</a>
<a href="#contact" class="w3-bar-item w3-button" onclick="toggleFunction()">CONTACT</a>
<!-- <a href="#" class="w3-bar-item w3-button">SEARCH</a> -->
</div>
</div>
<!-- First Parallax Image with Logo Text -->
<div class="bgimg-1 w3-display-container w3-opacity-min" id="home">
<div class="w3-display-middle" style="white-space:nowrap;">
<img src="./images/ASTlogo03.png" alt="AST Logo"> <!-- class="w3-round w3-image w3-opacity w3-hover-opacity-off" -->
<!-- <span class="w3-center w3-padding-large w3-black w3-xlarge w3-wide w3-animate-opacity">MY <span class="w3-hide-small">WEBSITE</span> LOGO</span> -->
</div>
</div>
<!-- Container (About Section) -->
<div class="w3-content w3-container w3-padding-64" id="about">
<h2 class="w3-center"><b>ABOUT AST WORKGROUPS</b></h2>
<h3 class="w3-center"><em>Data Management & Application Development</em></h3>
<p>The purpose of this site is to facilitate collaboration with state agencies to discuss holistic application development and data management concepts, data governance, and the effective management of information assets.</p>
<div class="w3-row">
<div class="w3-col m6 w3-center w3-padding-large">
<p><i class="fa fa-user w3-margin-right"></i><a href="https://www.ast.myflorida.com/chief-data-officer/" rel="noopener noreferrer" target="_blank">AST CHIEF DATA OFFICER</a></p><br>
<img src="https://static1.squarespace.com/static/58bd820d86e6c0c5a7193736/t/59f1063880bd5eb4f04d45a9/1526501914583/shutterstock_80339980_hand+drawing+gears.jpg?format=300w" alt="Image of a hand drawing gears."> <!-- class="circle responsive-img -->
</div>
<!-- Hide this text on small devices -->
<div class="w3-col m6 w3-hide-small w3-padding-large">
<p>The AST Chief Data Officer (CDO) provides vision and strategy for all data management activities. The CDO is a champion for global data management, governance, quality, and vendor relationships across the state enterprise. The CDO works with state agencies, the legislature, key stakeholders, and the public to align business and technology initiatives as well as partner public and private sector needs.</p>
</div>
</div>
<!-- Information on Certification Training
<p class="w3-large w3-center w3-padding-16">Certification Courses (Work in Progress)</p>
<p class="w3-wide"><i class="fa fa-laptop"></i>DAMA Certified Data Management Professional (CDMP)</p>
<div class="w3-light-grey">
<div class="w3-container w3-padding-small w3-dark-grey w3-center" style="width:10%">0%</div>
</div>
<p class="w3-wide"><i class="fa fa-laptop"></i>AWS Solutions Architect - Associate</p>
<div class="w3-light-grey">
<div class="w3-container w3-padding-small w3-dark-grey w3-center" style="width:10%">0%</div>
</div>
<p class="w3-wide"><i class="fa fa-laptop"></i>Machine Learning</p>
<div class="w3-light-grey">
<div class="w3-container w3-padding-small w3-dark-grey w3-center" style="width:10%">0%</div>
</div>
-->
</div>
<div class="w3-row w3-center w3-dark-grey w3-padding-16">
<div class="w3-quarter w3-section">
<span class="w3-xlarge"><i class="fa fa-bar-chart" aria-hidden="true"></i></span><br>
Open Data
</div>
<div class="w3-quarter w3-section">
<span class="w3-xlarge"><i class="fa fa-database" aria-hidden="true"></i></span><br>
Data Management & Governance
</div>
<div class="w3-quarter w3-section">
<span class="w3-xlarge"><i class="fa fa-cloud" aria-hidden="true"></i></span><br>
Cloud & Enterprise Architecture
</div>
<div class="w3-quarter w3-section">
<span class="w3-xlarge"><i class="fa fa-meetup"></i></span><br>
Meetings & Workshops
</div>
</div>
<!-- Second Parallax Image with Portfolio Text -->
<div class="bgimg-2 w3-display-container w3-opacity-min">
<div class="w3-display-middle">
<span class="w3-xxlarge w3-text-white w3-wide">WORKGROUPS</span>
</div>
</div>
<br>
<br>
<!-- Container (Workgroup Topics Section) -->
<!-- First Photo Grid-->
<!-- !PAGE CONTENT! -->
<div class="w3-main">
<div class="w3-row-padding">
<div class="w3-third w3-container w3-margin-bottom">
<img src="./images/container01.jpg" alt="Norway" style="width:100%" class="w3-hover-opacity">
<div class="w3-container w3-white">
<p><b>Lorem Ipsum</b></p>
<p>Praesent tincidunt sed tellus ut rutrum. Sed vitae justo condimentum, porta lectus vitae, ultricies congue gravida diam non fringilla.</p>
</div>
</div>
<div class="w3-third w3-container w3-margin-bottom">
<img src="./images/empire01.jpeg" alt="Norway" style="width:100%" class="w3-hover-opacity">
<div class="w3-container w3-white">
<p><b>Lorem Ipsum</b></p>
<p>Praesent tincidunt sed tellus ut rutrum. Sed vitae justo condimentum, porta lectus vitae, ultricies congue gravida diam non fringilla.</p>
</div>
</div>
<div class="w3-third w3-container">
<img src="./images/altair4.jpg" alt="Norway" style="width:100%" class="w3-hover-opacity">
<div class="w3-container w3-white">
<p><b>Lorem Ipsum</b></p>
<p>Praesent tincidunt sed tellus ut rutrum. Sed vitae justo condimentum, porta lectus vitae, ultricies congue gravida diam non fringilla.</p>
</div>
</div>
</div>
<!-- Second Photo Grid-->
<div class="w3-row-padding">
<div class="w3-third w3-container w3-margin-bottom">
<img src="./images/empire01.jpeg" alt="Norway" style="width:100%" class="w3-hover-opacity">
<div class="w3-container w3-white">
<p><b>Lorem Ipsum</b></p>
<p>Praesent tincidunt sed tellus ut rutrum. Sed vitae justo condimentum, porta lectus vitae, ultricies congue gravida diam non fringilla.</p>
</div>
</div>
<div class="w3-third w3-container w3-margin-bottom">
<img src="./images/altair4.jpg" alt="Norway" style="width:100%" class="w3-hover-opacity">
<div class="w3-container w3-white">
<p><b>Lorem Ipsum</b></p>
<p>Praesent tincidunt sed tellus ut rutrum. Sed vitae justo condimentum, porta lectus vitae, ultricies congue gravida diam non fringilla.</p>
</div>
</div>
<div class="w3-third w3-container">
<img src="./images/container01.jpg" alt="Norway" style="width:100%" class="w3-hover-opacity">
<div class="w3-container w3-white">
<p><b>Lorem Ipsum</b></p>
<p>Praesent tincidunt sed tellus ut rutrum. Sed vitae justo condimentum, porta lectus vitae, ultricies congue gravida diam non fringilla.</p>
</div>
</div>
</div>
</div>
<!-- Modal for full size images on click
<div id="modal01" class="w3-modal w3-black" onclick="this.style.display='none'">
<span class="w3-button w3-large w3-black w3-display-topright" title="Close Modal Image"><i class="fa fa-remove"></i></span>
<div class="w3-modal-content w3-animate-zoom w3-center w3-transparent w3-padding-64">
<img id="img01" class="w3-image">
<p id="caption" class="w3-opacity w3-large"></p>
</div>
</div>
-->
<!-- Third Parallax Image with Portfolio Text -->
<div class="bgimg-3 w3-display-container w3-opacity-min">
<div class="w3-display-middle">
<span class="w3-xxlarge w3-text-white w3-wide">CONTACT</span>
</div>
</div>
<!-- Container (Contact Section) -->
<div class="w3-content w3-container w3-padding-64" id="contact">
<h3 class="w3-center">WHERE WE WORK</h3>
<div class="w3-row w3-padding-32 w3-section">
<div class="w3-col m4 w3-container">
<!-- Add Google Maps -->
<div id="googleMap" class="w3-round-large w3-greyscale" style="width:100%;height:400px;"></div>
</div>
<div class="w3-col m8 w3-panel">
<div class="w3-large w3-margin-bottom">
<i class="fa fa-map-marker fa-fw w3-hover-text-black w3-xlarge w3-margin-right"></i> 4050 Esplanade Way, Suite 115, Tallahassee, FL 32399<br>
<i class="fa fa-phone fa-fw w3-hover-text-black w3-xlarge w3-margin-right"></i> Phone: (850) 413-9306<br>
<i class="fa fa-envelope fa-fw w3-hover-text-black w3-xlarge w3-margin-right"></i> Email: <a href="mailto:info@ast.myflorida.com">info@ast.myflorida.com</a><br>
</div>
<!-- Form Section for Sending Email
<p>Stop by for a cup of <i class="fa fa-coffee"></i> or leave us a note:</p>
<form action="/action_page.php" target="_blank">
<div class="w3-row-padding" style="margin:0 -16px 8px -16px">
<div class="w3-half">
<input class="w3-input w3-border" type="text" placeholder="Name" required name="Name">
</div>
<div class="w3-half">
<input class="w3-input w3-border" type="text" placeholder="Email" required name="Email">
</div>
</div>
<input class="w3-input w3-border" type="text" placeholder="Message" required name="Message">
<button class="w3-button w3-black w3-right w3-section" type="submit" style="border-radius: 0px 0px 0px 0px">
<i class="fa fa-paper-plane"></i> SEND MESSAGE
</button>
</form>
-->
</div>
</div>
</div>
<!-- Footer -->
<footer class="w3-center w3-black w3-padding-64 w3-opacity w3-hover-opacity-off">
<a href="#home" class="w3-button w3-light-grey"><i class="fa fa-arrow-up w3-margin-right"></i>To the top</a>
<div class="w3-xlarge w3-section">
<a href="https://github.com/"><i class="fa fa-github w3-hover-opacity"></i></a>
<a href="https://www.meetup.com/"><i class="fa fa-meetup w3-hover-opacity"></i></a>
<a href="https://twitter.com/AST_Florida/"><i class="fa fa-twitter w3-hover-opacity"></i></a>
<!--
<i class="fa fa-facebook-official w3-hover-opacity"></i>
<i class="fa fa-instagram w3-hover-opacity"></i>
<i class="fa fa-snapchat w3-hover-opacity"></i>
<i class="fa fa-pinterest-p w3-hover-opacity"></i>
<i class="fa fa-linkedin w3-hover-opacity"></i>
-->
</div>
<p>State of Florida | <a href="https://www.ast.myflorida.com/" title="AST" target="_blank" style="color:#f2f2f2" class="w3-hover-text-green">Agency for State Technology</a></p>
<p>Powered by <a href="https://www.w3schools.com/w3css/default.asp" title="W3.CSS" target="_blank" style="color:#f2f2f2" class="w3-hover-text-green">w3.css</a></p>
</footer>
<script>
// Google Maps
function myMap()
{
myCenter=new google.maps.LatLng(30.3896376,-84.2352904);
var mapOptions= {
center:myCenter,
zoom:12, scrollwheel: true, draggable: true,
mapTypeId:google.maps.MapTypeId.ROADMAP
};
var map=new google.maps.Map(document.getElementById("googleMap"),mapOptions);
var marker = new google.maps.Marker({
position: myCenter,
});
marker.setMap(map);
}
// Modal Image Gallery
function onClick(element) {
document.getElementById("img01").src = element.src;
document.getElementById("modal01").style.display = "block";
var captionText = document.getElementById("caption");
captionText.innerHTML = element.alt;
}
// Change style of navbar on scroll
window.onscroll = function() {myFunction()};
function myFunction() {
var navbar = document.getElementById("myNavbar");
if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {
navbar.className = "w3-bar" + " w3-card" + " w3-animate-top" + " w3-white";
} else {
navbar.className = navbar.className.replace(" w3-card w3-animate-top w3-white", "");
}
}
// Used to toggle the menu on small screens when clicking on the menu button
function toggleFunction() {
var x = document.getElementById("navDemo");
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB8a9FJI76Thv09Q27J_rtraFecTspr2iY&callback=myMap"></script>
<!--
To use this code on your website, get a free API key from Google.
Read more at: https://www.w3schools.com/graphics/google_maps_basic.asp
-->
</body>
</html>