-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (32 loc) · 1.32 KB
/
Copy pathindex.html
File metadata and controls
37 lines (32 loc) · 1.32 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notes</title>
<link rel="stylesheet" href="./style.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<div class="container">
<h1>Заметки</h1>
<div class="note-form">
<div class="form-group">
<label for="noteTitle">Заголовок:</label>
<input type="text" id="noteTitle" placeholder="Введите заголовок заметки">
</div>
<div class="form-group">
<label for="noteContent">Текст заметки:</label>
<textarea id="noteContent" placeholder="Введите текст заметки"></textarea>
</div>
<button class="btn" id="addNoteBtn">Добавить заметку</button>
</div>
<div class="notes-container" id="notesContainer">
<div class="empty-message" id="emptyMessage">
Пока нет заметок. Добавьте первую!
</div>
</div>
</div>
<script src="./main.js"></script>
</body>
</html>