-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
107 lines (89 loc) · 3.83 KB
/
contact.html
File metadata and controls
107 lines (89 loc) · 3.83 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>E-Comm Website</title>
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css" integrity="sha512-Evv84Mr4kqVGRNSgIGL/F/aIDqQb7xQ2vcrdIwxfjThSH8CSR7PBEakCr51Ck+w+/U6swU2Im1vVX0SVk9ABhg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="src/style.css">
<link rel="stylesheet" href="src/contact.css">
</head>
<body>
<!-- .............................NavBar Code START........................................... -->
<header class="section-navbar">
<section class="top_txt">
<div class="head container">
<div class="head_txt">
<p>Free Shopping, 30-days return or refund guarantee.</p>
</div>
<div class="sing_in_up">
<a href="#">SIGN IN</a>
<a href="#">SIGN UP</a>
</div>
</div>
</section>
<div class="container">
<div class="navbar-brand">
<a href="index.html">
<img src="public/images/logoo.png" alt="Shree eCommerce logo" class="logo" width="auto" height="auto" />
</a>
</div>
<nav class="navbar">
<ul>
<li class="nav-item">
<a href="/" class="nav-link"> Home</a>
</li>
<li class="nav-item">
<a href="about.html" class="nav-link"> About</a>
</li>
<li class="nav-item">
<a href="products.html" class="nav-link"> Products</a>
</li>
<li class="nav-item">
<a href="contact.html" class="nav-link"> Contact</a>
</li>
<li class="nav-item">
<a href="/addToCart.html" class="nav-link add-to-cart-button" id="cartValue">
<i class="fa-solid fa-cart-shopping"> 0</i>
</a>
</li>
</ul>
</nav>
</div>
</header>
<!-- .............................NavBar Code END........................................... -->
<!-- ..............................Contact From Start.................................... -->
<div class="container">
<div class="form-container">
<h2>Contact Us</h2>
<form id="contactForm">
<input type="text" id="fullName" placeholder="Enter Full Name" required>
<input type="email" id="email" placeholder="Email Address" required>
<input type="text" id="subject" placeholder="Subject" required>
<textarea id="message" placeholder="Message" required></textarea>
<button type="submit">Send Message</button>
</form>
</div>
<div class="map-container">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3783.330460324654!2d73.87717777512984!3d18.515965069680195!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bc2c1224d4e04e9%3A0x431f9e0d0075e474!2sPhoenix%20Marketcity%20Pune!5e0!3m2!1sen!2sin!4v1647814835785!5m2!1sen!2sin"
allowfullscreen>
</iframe>
</div>
</div>
<!-- ..............................Contact from End.................................... -->
<!-- ..............................Footer section Start.................................... -->
<footer class="section-footer">
<script type="module" src="footer.js"></script>
</footer>
<!-- ..............................Footer section Start.................................... -->
<script type="module" src="src/main.js"></script>
<script>
document.getElementById("contactForm").addEventListener("submit", function(event) {
event.preventDefault();
alert("Form submitted successfully!");
});
</script>
</body>
</html>