This repository has been archived by the owner on Aug 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (45 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<script defer src="script.js"></script>
<title>HCOONa Matata</title>
</head>
<body>
<div class="grider">
<div class="header">
Text Header
</div>
<div class="former">
<form id="form" class="form">
<div class="form-item">
<label for="name">Name</label>
<input id="name" required maxlength="8" required minlength="1" type="text" name="name">
<div id="error" class="error"></div>
</div>
<div class="form-item">
<label for="city">City</label>
<select name="City">
<option>Moscow</option>
<option>New Yourk</option>
</select>
</div>
<div class="form-item">
<label for="email">Email</label>
<input id="email" required type="email" name="email">
</div>
<div class="form-item">
<label for="date">Date</label>
<input id="date" min="1970-01-01" max="2020-01-01" type="date" name="Date">
</div>
<div class="form-submit">
<input type="submit">
</div>
</form>
</div>
</div>
</body>
</html>