forked from bastianallgeier/bulletjournal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (47 loc) · 2.01 KB
/
index.html
File metadata and controls
48 lines (47 loc) · 2.01 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
<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bullet журнал</title>
<link rel="icon" href="./favicon.svg">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<form class="plan">
<label for="monday" class="notes day">
<span class="heading">Понедельник</span>
<textarea id="monday" spellcheck="false" aria-label="Monday notes"></textarea>
</label>
<label for="tuesday" class="notes day">
<span class="heading">Вторник</span>
<textarea id="tuesday" spellcheck="false" aria-label="Tuesday notes"></textarea>
</label>
<label for="wednesday" class="notes day">
<span class="heading">Среда</span>
<textarea id="wednesday" spellcheck="false" aria-label="Wednesday notes"></textarea>
</label>
<label for="thursday" class="notes day">
<span class="heading">Четверг</span>
<textarea id="thursday" spellcheck="false" aria-label="Thursday notes"></textarea>
</label>
<label for="friday" class="notes day">
<span class="heading">Пятница</span>
<textarea id="friday" spellcheck="false" aria-label="Friday notes"></textarea>
</label>
<label for="weekend" class="notes weekend">
<span class="heading">Выходные</span>
<textarea id="weekend" spellcheck="false" aria-label="Weekend notes"></textarea>
</label>
<label for="this-month" class="notes month">
<span class="heading">Этот месяц</span>
<textarea id="this-month" spellcheck="false" aria-label="This month notes"></textarea>
</label>
<label for="next-month" class="notes month">
<span class="heading">Следующий месяц</span>
<textarea id="next-month" spellcheck="false" aria-label="Next month notes"></textarea>
</label>
</form>
<script src="./app.js"></script>
</body>
</html>