-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact (1).html
57 lines (57 loc) · 1.31 KB
/
contact (1).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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact | Gymshark</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #000;
color: #fff;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 50px auto;
padding: 20px;
background-color: #111;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
text-align: center;
color: #ffa500; /* Orange */
}
p {
margin-bottom: 20px;
line-height: 1.6;
}
.contact-info {
margin-top: 30px;
}
.contact-info p {
margin-bottom: 10px;
}
.email {
font-weight: bold;
color: #007bff; /* Blue */
}
.phone {
font-weight: bold;
color: #28a745; /* Green */
}
</style>
</head>
<body>
<div class="container">
<h1>Contact Gymshark</h1>
<p>If you have issues, doubts or problems with exchange related to our product or site contact us with the following connectives</p>
<div class="contact-info">
<p><span class="email">Email:</span> [email protected]</p>
<p><span class="phone">Phone:</span> +91 8828392960</p>
</div>
</div>
</body>
</html>