-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (80 loc) · 2.27 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
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WavePomo</title>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
<style>
@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Text:wght@300&display=swap");
</style>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<h3 id="overMsg">Time is over</h3>
<h1 id="timeString">00 : 00</h1>
<div class="btn">
<button type="button" name="start" id="start">
<i class="material-icons"> play_arrow </i>
</button>
<button type="button" name="stop" id="stop">
<i class="material-icons"> stop </i>
</button>
<button type="button" name="setting" id="setting">
<i class="material-icons"> settings </i>
</button>
</div>
<div class="popup">
<button type="button" value="x" id="exit">
<i class="material-icons"> close </i>
</button>
<br />
<form id="setForm" action="" method="post">
Time :
<input
id="time"
type="number"
name="limit"
`
value=" 30"
size="10"
max="60"
min="0"
/>
minutes
<br />
Message :
<input
id="msg"
type="text"
name="msg"
placeholder=" Text finish message"
/>
<br />
<button id="setTime" type="button">save</button>
</form>
<!-- <div class="nav">
<h3>Another Feacture</h3>
<nav>
<li><a>history</a></li>
<li><a>community</a></li>
</nav>
</div> -->
</div>
<section class="background">
<section class="waves">
<div class="wave w1"></div>
<div class="wave w2"></div>
<div class="wave w3"></div>
</section>
<div class="goup"></div>
</section>
<script src="./time.js"></script>
<script src="./popup.js"></script>
</body>
</html>