-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddhabits.html
51 lines (46 loc) · 1.18 KB
/
addhabits.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
<!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" />
<title>Daily Habits</title>
</head>
<body>
<div class="container">
<h2>HABITS</h2>
<p></p>
<form class="add-habit">
<input
class="habit"
type="text"
name="habit"
placeholder="Enter Habit Name"
required
/>
<input
type="number"
name="reps"
placeholder="# of Repetitions"
min="1"
required
/>
<div class="frequency">
<label for="timeframe">Frequency: </label>
<select name="timeframe" id="timeframe">
<option value="Daily">Daily</option>
<option value="Weekly">Weekly</option>
<option value="Monthly">Monthly</option>
<option value="Yearly">Yearly</option>
</select>
</div>
<input type="submit" value="+ Add Habit" />
</form>
</select>
<button type="button">Click Me!</button>
<footer>
<p>Author: Maria Kunevich </p>
<p><a href="mailto:[email protected]">[email protected]</a></p>
</footer>
</body>
</html>