-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
80 lines (51 loc) · 2.23 KB
/
contact.html
File metadata and controls
80 lines (51 loc) · 2.23 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
80
<!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>fashionista</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" />
</head>
<body>
<section id="header">
<img src="images/logo.png" alt="logo" class="logo">
<div>
<ul id="navbar">
<li><a href="login1.html">Login</a></li>
<li><a href="index.html">Home</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="about.html">About</a></li>
<li><a class="active" href="contact.html">Contact</a></li>
<li id="cart-bag"><a c href="cart.html">cart</a></li>
<a href="#" id="close"><i class="fa-solid fa-xmark"></i></a>
</ul>
</div>
<div id="mobile">
<a href="cart.html"><i class="fa-solid fa-cart-shopping"></i></a>
<i id="bar" class="fa-solid fa-bars"></i>
</div>
</section>
<section>
<h2 class="contact-head">Contact Us</h2>
<div class="container">
<form name="form" method="post" action="">
<input type="hidden" name="new" value="1" />
<h3>GET IN TOUCH </h3>
<input type="text" name="customername" placeholder="Customer Name " required />
<input type="email" name="email" placeholder=" Enter Email id" required />
<input type="text" name="mobile" placeholder=" Enter mobile number " required />
<textarea name="message" rows="4" placeholder="How can we help you?"></textarea>
<button type="submit" name="submit" value="Send">Send</button>
</form>
</div>
</section>
<footer>
<div class="copyright">
<p>© Made by Pawanpreet Kaur-HTML,CSS,javaScript ecommerce template</p>
</div>
</footer>
<!-- <script src="script.js"></script> -->
</body>
</html>