-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
59 lines (44 loc) · 1.98 KB
/
contact.html
File metadata and controls
59 lines (44 loc) · 1.98 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
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<link rel="icon" href="data:;base64,=">
<link href="style.css/contact.css" rel="stylesheet">
<link href="style.css/index.css" rel="stylesheet">
</head>
<body>
<header>
<nav>
<a href="contact.html">Contact</a>
<a href="index.html">Home</a>
</nav>
</header>
<main>
<div class="container">
<form id="form">
<h1 class= success id="success">Thank you for contacting us!</h1>
<label class="item">Your name:
<input name="firstname" id= firstName placeholder="*Required" type="text"></label>
<div class="error-input" id="firstNameError">*Insert your name</div>
<label class="item">Subject:
<input name="subject" id= subject placeholder="*Minimum 10 characters" type="text"></label>
<div class="error-input" id="subjectError">*Insert subject (minimum 10 characters)</div>
<label class="item">Email:
<input name="email" id= email placeholder="*Required" type="text"></label>
<div class="error-input" id="emailError">*Insert your email</div>
<label class="item">Address:
<input name="address" id= address placeholder="*Minimum 25 characters" type="text"></label>
<div class="error-input" id="addressError">*Insert your address (minimum 25 characters)</div>
<div>
<button type="submitButton" class="submitButton">Send</button>
</div>
</form>
</div>
</main>
<script src="script.js/contact.js"></script>
<footer></footer>
</body>
</html>