-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (33 loc) · 1.42 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
<!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="./style.css">
<script src= "http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css"></script>
<title>Peace of Mind</title>
<h1 className="app-title">Peace of Mind</h1>
</head>
<body>
<div>
<label class="breath-label">How Many Breaths Would You Like to Take?
</label>
<select class="breath-selection">
<option value="5">5 Breaths</option>
<option value="10">10 Breaths</option>
<option value="15">15 Breaths</option>
<option value="20">20 Breaths</option>
<option value="25">25 Breaths</option>
<option value="30">30 Breaths</option>
</select>
</div>
<div class="circle-wrap">
<div class="outer-circle"></div>
<div class="inner-circle "></div>
</div>
<p class="breath-instructions">Sit back, relax, and press 'Start' when you're ready to begin breathing.</p>
<button class="start">Start</button>
<p class="breaths-lapsed">How Many Breaths Are Left: <span class="breaths-left"></span></p>
<script src="./app.js"></script>
</body>
</html>