-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (30 loc) · 1.1 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
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>FitnessMom </title
<link href='https://fonts.googleapis.com/css?family=Oswald:300' rel='stylesheet' type='text/css'>
<link href="style.css" rel="stylesheet" type="text/css">
<link rel="icon" href="images/icon.png" sizes="16x16 32x32" type="image/png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div id="app">
<h2>Welcome to FitnessMom.</h2>
<button id="gear"><i class="fa fa-gear" style="font-size:24px" ></i></button>
<h1 id="status">Rest</h1>
<p class="large"><span id="sec">20</span></p>
<p>
<button id="start">Start</button>
<button id="pause">Pause</button>
</p>
<p>
<button id="reset">Reset</button>
</p>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<script src="script.js"></script>
</body>
</html>