-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
50 lines (50 loc) · 1.46 KB
/
contact.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
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Fashion Beauty</title>
</head>
<body>
<center>
<h1>Contact us</h1>
<a href="index.html">Home</a>
<a href="products.html">Products</a>
<a href="models.html">ModelsLook</a>
<a href="#">Contact</a>
<br><br>
<hr>
<h2>Add your information below</h2>
<h5>Don't worry your personal info will be saved privately.</h5>
<table>
<form>
<tr>
<td> <label>Your Name</label>
<input type="text" maxlength="20" required></td>
</tr>
<br><br>
<tr>
<td> <label>Phone Number#</label>
<input type="number" maxlength="10" required></td>
</tr>
<tr>
<td> <label>Address</label>
<input type="text" maxlength="100" required></td>
</tr>
<tr>
<td> <label>Email</label>
<input type="email" maxlength="60" required></td>
</tr>
<tr>
<td><textarea name="name" cols="30" rows="10" placeholder="Type your Feedback" required></textarea></td>
</tr>
<tr>
<td>
<button type="submit">Send</button>
</td>
</tr>
</form>
</table>
</center>
</body>
</html>