-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (61 loc) · 3.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript" src="js/web.js"></script>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Meeting Tracker</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/favicon.png">
</head>
<body>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container">
<div class="row">
<div class="twelve columns" style="margin-top: 10%">
<h1><a href="https://github.com/Olorapino"><i class="fab fa-github"></i></a> Meeting Tracker</h1>
<h2><span id="counter">00"</span> <span id="status"></span></h2>
<div id="buttons">
<input id="start" type="button" value="Start" onclick="start()"></input>
<input id="stop" type="button" value="Stop" onclick="stop()"></input>
</div>
</div>
</div>
<div class="row">
<div class="four columns">
<p>How many people are on this meeting?</p>
</div>
<div class="four columns">
<p><input id="people" value="4"/></p>
</div>
</div>
<div class="row">
<div class="four columns">
<p>Cost per hour of the team?</p>
</div>
<div class="four columns">
<p><input id="cost" value="25"/></p>
</div>
</div>
<h1>Total cost: <span id="totalCost">0.00</span></h1>
</div>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>