-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
115 lines (100 loc) · 4.59 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
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
108
109
110
111
112
113
114
115
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<header>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css"
integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<head>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous" />
<!-- Bootstrap Icon Library -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css" />
<!-- My Css -->
<link href="stylehome.css" rel="stylesheet" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Lora:ital@1&family=Merriweather:wght@300&family=Raleway:wght@300&display=swap"
rel="stylesheet">
<title>GLOWING GODDESS: Contact</title>
<div class="logo">
<img src="Our Beauty Store Logo - bigger.png" />
</div>
</head>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarTogglerDemo03"
aria-controls="navbarTogglerDemo03" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo03">
<ul class="navbar-nav mr-auto mt-2 mt-lg-0" id="list">
<li class="nav-item">
<a class="nav-link" href="home.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="catalogue.html">Catalogue</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about-us-page2.html">About us</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0" id="button1" type="submit">Search</button>
</form>
<li class="nav_buttons2">
<a href="cart.html">
<button class="btn btn-info nav-but" id="trolley">
<i class="bi bi-cart"></i>
</button>
</a>
<button class="btn btn-info nav-but" id="account">
<i class="bi bi-person"></i>
</button>
</li>
</div>
</nav>
</head>
<body>
<section id="contact-form">
<h2 class="contact-titles">Get in Touch</h2>
<form id="contactForm">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="4" required></textarea>
<button class="button" id="submit-but" onclick="submitForm()">Submit</button>
</form>
</section>
<section id="map">
<h2 class="contact-titles">Visit Our Store</h2>
<iframe width="760" height="300" frameborder="0" style="border:0"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3022.487740142745!2d-74.00600168460242!3d40.71277607922592!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c258f359512d8d%3A0x52958bfcf05eebee!2sNew%20York%2C%20NY!5e0!3m2!1sen!2sus!4v1659020431661!5m2!1sen!2sus"
allowfullscreen></iframe>
</section>
<section id="helpful-links">
<h2 class="contact-titles"> Helpful Links!</h2>
<div class="social-icons">
<button id="instagram"><a href="https://www.instagram.com" target="_blank" title="Instagram"><i
class="bi bi-instagram h2"></i></a>
</a></button>
<button id="linkedin">
<a href="https://www.linkedin.com" target="_blank" title="LinkedIn">
<i class="bi bi-linkedin h2"></i></a></button>
</div>
</section>
<br>
<footer>
<p>© 2024 Glowing Goddess</p>
</footer>
</body>
</html>