-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathshipping.html
112 lines (91 loc) · 3.37 KB
/
shipping.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EasyShop.com - Premium Shipping Experience</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(45deg, #f8f8f8, #e6e6e6);
color: #333;
}
.container {
max-width: 1400px;
margin: 0 auto;
display: flex;
flex-direction: column;
padding: 30px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
border-radius: 15px;
background-color: #fff;
}
.header {
background: linear-gradient(45deg, #ffcc00, #ff9933);
padding: 30px;
text-align: center;
border-radius: 15px 15px 0 0;
margin-bottom: 30px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
h1,
h2,
h3 {
color: #333;
}
h2 {
margin-top: 30px;
margin-bottom: 20px;
}
p {
margin-bottom: 30px;
color: #555;
}
.link-container {
margin-top: 30px;
text-align: center;
}
.nav-link {
display: inline-block;
padding: 18px;
text-decoration: none;
color: #fff;
background: linear-gradient(45deg, #333, #555);
margin: 0 15px;
border-radius: 8px;
transition: background 0.3s, transform 0.2s;
}
.nav-link:hover {
background: linear-gradient(45deg, #555, #777);
transform: scale(1.05);
}
</style>
<script>
function displayContactForm() {
alert("Please visit the Contact Us page for shipping queries.");
}
</script>
</head>
<body>
<div class="container">
<div class="header">
<h1>Premium Shipping Experience</h1>
<p>Your ultimate destination for quality products and an extraordinary shopping journey.</p>
</div>
<h2>Shipping Information</h2>
<p>Embark on a seamless and luxurious shipping process designed exclusively for you. Explore the unparalleled experience below.</p>
<h3>Why Shipping Matters</h3>
<p>Shipping transcends the ordinary, ensuring your meticulously chosen products reach you with unrivaled promptness and utmost security. Our commitment is to deliver excellence with every order.</p>
<h3>How Shipping Works</h3>
<p>From the moment your order is placed, our elite team orchestrates a swift and precise process. We collaborate with esteemed carriers dedicated to delivering your prized possessions right to your doorstep. Track your shipment effortlessly and stay informed about its majestic journey.</p>
<h3>Contact Us for Shipping Queries</h3>
<p>If you seek enlightenment on shipping intricacies or desire royal assistance, <a href="#" onclick="displayContactForm()">summon us</a> at your convenience.</p>
<div class="link-container">
<a class="nav-link" href="contact.html">Contact Us</a>
<a class="nav-link" href="refund.html">Refund Policy</a>
</div>
</div>
</body>
</html>