-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (119 loc) · 4 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
</head>
<body>
<div class="fw-bolder text-center display-7">Don't worry for tomorrow.You can try to do everythings now.</div>
<div class="text-center">You should learn totally 4hr for Web and English.</div>
<section class="container mt-4">
<table class="table border border-1">
<thead class="">
<tr>
<th scope=""></th>
<th scope="col" class="text-center">Morning
<br>6:00 to 11:00 </br>
</th>
<th scope="col" class="text-center">Afternoon
<br>1:00 to 5:00 </br>
</th>
<th scope="col" class="text-center">Night
<br>7:00 to 10:00 </br>
</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Sunday</th>
<td class="text-center">Eng
<div class="text-danger">Rev</div>
</td>
<td class="text-center">Web
<div class="text-danger">Study</div>
</td>
<td class="text-center">Eng
<div class="text-danger">Rev</div>
</td>
</tr>
<tr>
<th scope="row">Monday</th>
<td class="text-center">Eng
<div class="text-danger">chp(2)to(4)</div>
</td>
<td class="text-center">Web
<div class="text-danger">Study</div>
</td>
<td class="text-center">Eng
<div class="text-danger">Listening</div>
</td>
</tr>
<tr>
<th scope="row">Tuesday</th>
<td class="text-center">Eng
<div class="text-danger">chp(2)to(4)</div>
</td>
<td class="text-center">Web
<div class="text-danger">Reuse</div>
</td>
<td class="text-center">Eng
<div class="text-danger">Reading</div>
</td>
</tr>
<tr>
<th scope="row">Wednesday</th>
<td class="text-center">Eng
<div class="text-danger">chp(2)to(4)</div>
</td>
<td class="text-center">Web
<div class="text-danger">Study</div>
</td>
<td class="text-center">Eng
<div class="text-danger">Grammar</div>
</td>
</tr>
<tr>
<th scope="row">Thursday</th>
<td class="text-center">Eng
<div class="text-danger">chp(2)to(4)</div>
</td>
<td class="text-center">Web
<div class="text-danger">Study</div>
</td>
<td class="text-center">Eng
<div class="text-danger">Vocabulary</div>
</td>
</tr>
<tr>
<th scope="row">Friday</th>
<td class="text-center">Eng
<div class="text-danger">chp(2)to(4)</div>
</td>
<td class="text-center">Web
<div class="text-danger">Reuse</div>
</td>
<td class="text-center">Eng
<div class="text-danger">Writing</div>
</td>
</tr>
<tr>
<th scope="row">Saturday</th>
<td class="text-center">Eng
<div class="text-danger">Rev</div>
</td>
<td class="text-center">Web
<div class="text-danger">Reuse</div>
</td>
<td class="text-center">Eng
<div class="text-danger">Rev</div>
</td>
</tr>
</tbody>
</table>
</section>
<script type="module" src="/main.js"></script>
</body>
</html>