-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 949 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 949 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Josefin+Sans' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Playfair+Display' rel='stylesheet' type='text/css'>
<meta charset="UTF-8">
<title>World Clock</title>
<link rel="stylesheet" type="text/css" href="./styles.css">
<link rel="stylesheet" type="text/css" href="./bootstrap.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
</head>
<body>
<div class='overlay'>
<div class='innerBox'>
<h1 class='welcome'>Welcome to the World Clock App!</h1>
<p>Keep track of time around the world through the click of a button. To get started, add a time using the timezone selector.</p>
<button class='gotIt'>Get Started!</button>
</div>
</div>
<div id='app'></div>
<script src='bundle.js'></script>
</body>
</html>