-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontact.html
166 lines (126 loc) · 3.91 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<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="./styles/dropdown.css">
<link rel="stylesheet" href="./styles/index.css">
<link rel="stylesheet" href="./styles/slide.css">
<link rel="stylesheet" href="./styles/footer.css">
<style>
* {
padding: 0px;
margin: 0px;
font-family: Arial, Helvetica, sans-serif;
}
#abnav {
background-color: white;
padding: 10px;
}
body {
background: rgb(152, 193, 189);
background: linear-gradient(360deg, rgba(185, 194, 193, 1) 0%, rgba(251, 251, 251, 1) 70%, rgba(171, 217, 227, 1) 100%);
}
#abmain {
margin: auto;
width: 80%;
display: flex;
margin-top: 40px;
justify-content: space-between;
}
#abmain1 {
padding: 10px;
width: 63%;
border: 1px solid gray;
background-color: white;
border-radius: 10px;
margin-bottom: 20px;
}
#abmain2 {
width: 33%;
}
p {
font-size: 13px;
margin-top: 10px;
}
h5 {
margin-top: 10px;
}
.blu {
color: rgb(0, 132, 255);
}
.esp {
display: flex;
gap: 10px;
}
.blu:hover {
cursor: pointer;
text-decoration: underline;
}
#ab2ab {
height: 30px;
background-color: white;
border: 1px solid rgb(218, 213, 213);
border-top: 8px solid rgb(218, 213, 213);
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
</style>
</head>
<body>
<div id="navbar"></div>
<div id="stickynavbar"></div>
<div id="abnav">
<h3>CONTACT US</h3>
</div>
<div id="abmain">
<div id="abmain1">
<p>If you are looking for help with any area of the site, looking to send us feedback, or interested in
advertising on Cricinfo, please use our help and feedback form</p>
<h5>Office contact details </h5>
<h5>Cricinfo UK</h5>
<p>3 Queen Caroline Street</p>
<p>Hammersmith</p>
<p>London W6 9PE</p>
<p>United Kingdom</p>
<p class="blu" id="blu1">Contact us</p>
<h5>ESPN Digital Media (India) Private Limited</h5>
<p>Unit No. A2, A Wing, 6th Floor, DivyaSree Chambers</p>
<p>O'Shaughnessy Road, Langford Town</p>
<p>Bangalore - 560 025</p>
<p>Karnataka</p>
<p>India</p>
<p class="blu" id="blu2">Contact us</p>
<h5>Cricinfo USA</h5>
<p>ESPN International</p>
<p>21st Floor</p>
<p>77, West 66th Street</p>
<p>New York</p>
<p>NY 10023</p>
<p class="blu" id="blu3">Contact us</p>
</div>
<div id="abmain2">
<div id="ab2ab">
<p class="blu">Readers recommend - Curated tweets by ESPNcricinfo</p>
</div>
</div>
</div>
<div id="footerr"></div>
</body>
</html>
<script src="./scripts/forall.js"></script>
<script type="module" src="./scripts/about-contact.js">
let contactUs = () => {
window.location.href = "./feedback.html"
}
document.getElementById("blu1").addEventListener("click", () => {
contactUs();
})
document.getElementById("blu2").addEventListener("click", () => {
contactUs();
})
document.getElementById("blu3").addEventListener("click", () => {
contactUs();
})
</script>