-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<ul class="film-list"></ul>
<form class="contact-form js-contact-form">
<input
name="userName"
type="text"
class="contact-form-input js-username-input"
data-length="8"
placeholder="Your name"
/>
<label class="js-policy-label">
<input
type="checkbox"
name="accept"
class="contact-form-checkbox js-policy-checkbox"
/>
Я <span class="js-username-output">Anonymous</span> погоджуюсь із
політикою конфіденційності
</label>
<button type="submit" class="contact-form-btn js-contact-form-submit">
Відправити
</button>
</form>
<!-- <script type="module" src="./js/lesson-1.js"></script> -->
<!-- <script type="module" src="./js/lesson-2.js"></script> -->
<!-- <script type="module" src="./js/lesson-3.js"></script> -->
<script type="module" src="./js/lesson-4.js"></script>
</body>
</html>