-
Notifications
You must be signed in to change notification settings - Fork 0
/
Energy Drink Calender WEB.html
138 lines (123 loc) · 3.49 KB
/
Energy Drink Calender WEB.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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="assets/img/favicon.jpg" />
<link rel="stylesheet" href="styles.css">
<title>Energy Drink calender WEB GUI</title>
</head>
<body>
<h1>Welcome to a web app to help you <br><div class="title">energy drinks</div> in a healthy way</h1>
<h3>mark in the calendar the day on which <br>you can drink an energy drink on the <br>sub-application of the desktop application</h3>
<center>
<div class="calendar">
<div class="month"><a href="#" class="nav"><i class="fas fa-angle-left"></i></a><div>July <span class="year">2024</span></div><a href="#" class="nav"><i class="fas fa-angle-right"></i></a></div>
<div class="days">
<span>Mon</span>
<span>Tue</span>
<span>Wed</span>
<span>Thu</span>
<span>Fri</span>
<span>Sat</span>
<span>Sun</span>
</div>
<div class="dates">
<button>
<time>1</time>
</button>
<button>
<time>2</time>
</button>
<button>
<time>3</time>
</button>
<button>
<time>4</time>
</button>
<button>
<time>5</time>
</button>
<button>
<time>6</time>
</button>
<button>
<time>7</time>
</button>
<button>
<time>8</time>
</button>
<button>
<time>9</time>
</button>
<button>
<time>10</time>
</button>
<button>
<time>11</time>
</button>
<button>
<time>12</time>
</button>
<button>
<time>13</time>
</button>
<button>
<time>14</time>
</button>
<button>
<time>15</time>
</button>
<button>
<time>16</time>
</button>
<button>
<time>17</time>
</button>
<button class="today">
<time>25</time>
</button>
<button>
<time>19</time>
</button>
<button>
<time>20</time>
</button>
<button>
<time>21</time>
</button>
<button>
<time>22</time>
</button>
<button>
<time>23</time>
</button>
<button>
<time>24</time>
</button>
<button>
<time>25</time>
</button>
<button>
<time>26</time>
</button>
<button>
<time>27</time>
</button>
<button>
<time>28</time>
</button>
<button>
<time>29</time>
</button>
<button>
<time>30</time>
</button>
<button>
<time>31</time>
</button>
</div>
</div>
</center>
</body>
</html>