-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactus.html
More file actions
79 lines (69 loc) · 2.59 KB
/
contactus.html
File metadata and controls
79 lines (69 loc) · 2.59 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<link href="http://fonts.cdnfonts.com/css/frosty" rel="stylesheet">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/contactus.css">
<title>Contact Us</title>
</head>
<body>
<header>
<nav>
<div>
<h1>Kids World</h1>
</div>
<div class="cloud" >
<div class="cloudElement"></div>
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="aboutus.html">About us</a></li>
<li><a href="contactus.html">contact us </a></li>
</ul>
</nav>
</header>
<main>
<form id="contactUsForm">
<fieldset>
<legend>Contact us </legend>
<label for="name">Full Name</label>
<input id = "name" name = "name" type="text" placeholder="Full Name" required>
<br>
<label for="email">E-mail</label>
<input id = "email" name = "email" type="email" placeholder="username@mail.com" required>
<br>
<label for="number">Phone Number</label>
<input id = "number" name = "phone" type="number" required>
<br>
<label for="message">Message</label>
<textarea id = "message" name = "message" placeholder="Write your message ... " type="text" cols = "30" rows ="10" required></textarea>
<button id = "btn">Submit</button>
</fieldset>
</form>
<div id="body"></div>
</div>
</div>
</main>
<script src="contactus.js"></script>
<footer>
<ul id="social">
<a href="https://www.twitter.com">
<img src="https://www.net-aware.org.uk/siteassets/images-and-icons/application-icons/app-icons-twitter.png?w=585&scale=down" alt="">
</a>
<a href="https://www.instagram.com">
<img src="https://upload.wikimedia.org/wikipedia/commons/5/51/Facebook_f_logo_%282019%29.svg" alt="">
</a>
<a href="https://www.facebook.com/">
<img src="https://nveloop.com/wp-content/uploads/2021/02/instagram.jpg" alt="">
</a>
<ul id="contact">
<li>Phone number: +962 79 520 9793</li>
<li>Email: info@KidsWorld.com</li>
</ul>
</footer>
</body>
</html>