-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Лабараторка 4</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<ul>
<li><a href="#">Тервер</a></li>
<li><a href="#">Техмех</a></li>
<li><a href="#">Программирование</a></li>
<li><a href="#">ИТ</a></li>
<li><a href="#">Физ-ра</a></li>
<li><a href="#">Математика</a></li>
</ul>
</nav>
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<div class="modal-body">
<form class="form">
<label for="fname">Заголовок:</label><br>
<input type="text" id="zag" name="zag" value=""><br>
<label for="lname">Описание:</label><br>
<input type="text" id="op" name="op" value=""><br><br>
<input type="submit" value="Создать">
</form>
</div>
</div>
</div>
<button class="myBtn">Модальное окно</button>
<div class="cards">Список пуст</div>
<script src="main.js">
</script>
</body>