-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (70 loc) · 2.25 KB
/
Copy pathindex.html
File metadata and controls
72 lines (70 loc) · 2.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="http://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="CSS/indexStyle.css" />
<link rel="stylesheet" href="CSS/navBarStyle.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<title>ExtraTime</title>
</head>
<body>
<div class="big-wrapper">
<!-- Navigation Bar -->
<header>
<div class="navBarContainer">
<div class="name">
<h3><a href="index.html">ExtraTime</a></h3>
</div>
<div class="links">
<ul>
<li>
<a href="#">Calculator <i class="fa fa-caret-down"></i></a>
<ul class="dropdown">
<li><a href="oneDayOvertime.html">Daily</a></li>
</ul>
</li>
<li><a href="#">Features</a></li>
<li>
<a href="#">News</a>
</li>
<li><a href="about.html">About us</a></li>
<li>
<a href="#" class="btn"><i class="fa fa-gear"></i></a>
</li>
</ul>
</div>
</div>
</header>
<!-- Header with current date and time -->
<div class="dateTimeHeader">
<h1 class="currentTime"></h1>
<h3 class="currentDate"></h3>
</div>
<!-- Main Area -->
<div class="main-area">
<div class="big-title">
<h1>ExtraTime</h1>
<h1 class="second-headline">Your all in one time calculator.</h1>
</div>
<p class="text">
Aren't you tired of calculating your own overtime? Or have you always
wanted to know when Christmas is from a certain date? Don't worry!
ExtraTime is here for you! <br />
Press the button and get started right away.
</p>
<div class="start-btn">
<a href="oneDayOvertime.html" class="btn">Start now</a>
</div>
</div>
</div>
</body>
<script src="JS/timeDisplay.js"></script>
</html>