-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (112 loc) · 4.86 KB
/
index.html
File metadata and controls
125 lines (112 loc) · 4.86 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html>
<head>
<title>Meal Board</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-compatible" content="ie=edge">
<link rel="shortcut icon" href="./img/chicken-recipe.png">
<link rel="stylesheet" href="./css/index.css">
</head>
<body>
<main>
<!-- Clock -->
<section>
<div>
<span class="hours"></span>
<span class="column">:</span>
<span class="minutes"></span>
<span class="period-of-day"></span>
<span class="seconds"></span>
</div>
</section>
<!-- Img change area -->
<aside>
<div class="div-img">
<img src="./img/chicken-recipe.png" alt="image">
</div>
<header class="form-header">Eat good food regularly</header>
</aside>
<!-- Form and meal board -->
<section>
<form>
<p id="validation-message" class="hide-validation-message">All fields required</p>
<fieldset>
<input id="input" class="input" type="text" name="name" placeholder="What would you like to eat?" autocomplete="off" required>
<select id="preferred-time">
<option id="add-time" value="Choose preferred time" disabled selected>Choose preferred time</option>
<optgroup label="Breakfast">
<option id="am8" value="8am" >8am</option>
<option id="am10" value="10am">10am</option>
</optgroup>
<optgroup label="Lunch">
<option value="1pm">1pm</option>
<option value="3pm">3pm</option>
</optgroup>
<optgroup label="Dinner">
<option value="7pm">7pm</option>
<option value="8pm">8pm</option>
</optgroup>
</select>
<div>
<button class="add">Add</button>
<button class='clear'>Clear from board</button>
</div>
</fieldset>
</form>
<div>Meal Dashboard</div>
<div>
<div class="table table-header">
<div class="table-row">
<div>
Meal
</div>
<div>
Name
</div>
<div>
Time
</div>
</div>
</div>
<div class="table">
<div class="table-row">
<div>
Breakfast
</div>
<div class="breakfast-choice">
</div>
<div class="breakfast-time">
</div>
</div>
</div>
<div class="table">
<div class="table-row">
<div>
Lunch
</div>
<div class="lunch-choice">
</div>
<div class="lunch-time">
</div>
</div>
</div>
<div class="table">
<div class="table-row">
<div>
Dinner
</div>
<div class="dinner-choice">
</div>
<div class="dinner-time">
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer><a href="https://github.com/Ifycode/Meal-Board">Go to github Repo</a></footer>
</main>
<script src="./js/index.js"></script>
</body>
</html>