-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
95 lines (93 loc) · 3.15 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
<!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>Contact Us</title>
<link rel="stylesheet" href="navbar.css" />
<link rel="stylesheet" href="export.css" />
<link rel="stylesheet" href="contact.css" />
<link rel="stylesheet" href="slider.css" />
<link rel="stylesheet" href="cartslider.css" />
<script
src="https://kit.fontawesome.com/18dcf284b5.js"
crossorigin="anonymous"
></script>
</head>
<body>
<div id="nav_header"></div>
<div id="slider"></div>
<div id="mySidebar" class="sidebar"></div>
<h1>CONTACT US</h1>
<div id="containerr">
<p class="p">
To check the status of your order, log in to your account and click into
your order to see shipment status & tracking details. If you checked out
as a guest, you can view your order status by clicking "View Your Order"
on either your order confirmation or shipping confirmation emails.
</p>
<p class="p">
To start a return, log in to your account and find the link for returns.
If you checked out as a guest and wish to make a return, please click
here to create an account with the email address used on your order.
</p>
<p class="p">For other inquiries, email us at flyrep@bluefly.com.</p>
<p class="p">
We normally respond to email inquiries within 48 business hours of
receipt. Our customer service team is available Monday to Thursday from
9AM to 6PM EST. Friday's from 9AM to 5PM EST. Unfortunately, our
customer service team does not operate on the weekends and most major
holidays.
</p>
<p class="p">
Thank you for your patience. We look forward to providing you with the
best service.
</p>
<p class="p">Our mailing address is:</p>
<p class="p">1124 Kane Concourse Bay Harbor, FL 33154</p>
<p class="p">
Note: This is not a return address. To submit a return, follow the
return process in your account. If you return items to this address,
your refund will not be processed.
</p>
</div>
<div id="main">
<div id="inputbox">
<div>
<p class="p">NAME</p>
<input type="text" />
</div>
<div>
<p class="p">EMAIL</p>
<input type="text" />
</div>
</div>
<div id="inputbox">
<div>
<p class="p">MESSAGE</p>
<input id="message" type="text" />
</div>
</div>
<button class="btnn">SEND</button>
</div>
<div id="total-footer"></div>
</body>
</html>
<script type="module">
import {
headerHtml,
headerJS,
topSliderTxt,
bagSideClose,
bagSideOpen,
cartsliderhtml,
} from "./components/header.js";
document.querySelector("#nav_header").innerHTML = headerHtml();
document.querySelector("#mySidebar").innerHTML = cartsliderhtml();
headerJS();
topSliderTxt();
bagSideOpen();
bagSideClose();
</script>
<script type="module" src="contact.js"></script>