-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact us.html
100 lines (77 loc) · 2.01 KB
/
contact us.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
<!DOCTYPE html>
<html>
<head>
<title>Contact Us page</title>
<style>
* {
margin: 0;
padding: 0;
}
html {
scroll-behaviour: smooth;
}
.background {
background-color: grey;
background-blend-mode: darken;
background-size: cover;
}
.firstsection {
height: 110vh;
}
.box-main {
display: flex;
justify-content: center;
align-items: center;
color: white;
max-width: 50%;
margin: auto;
height: 80%;
}
.text-big {
font-family: "Piazzolla", serif;
font-weight: bold;
font-size: 41px;
text-align: center;
}
.text-small {
font-family: "Sansita Swashed", cursive;
font-size: 18px;
text-align: center;
}
.center {
text-align: center;
}
.text-footer {
text-align: center;
padding: 10px 0;
font-family: "Ubuntu", sans-serif;
display: flex;
justify-content: center;
}
</style>
</head>
<body>
<section class="background firstsection">
<div class="box-main">
<div class="firstHalf">
<p class="text-big">Contact Us</p>
<p class="text-small">
You can Contact Us if you face any problem
</p>
<br>
<br>
<p class="center"
style="text-decoration:none;
color:white; font-size:18px;">
<b>Address:</b><br><br>Sports Club, Roundabout Road, Srinivas Nagar, Ashok Nagar,<BR> Bengaluru-560025, Karnataka, India<br><br><br>
<b>Phone:</b><br><br>+91 XXXXXXXXXX<br>+91 23XXXXXXXX<br> +91 56XXXXXXXX<br> +91 56XXXXXXXX<br><br><br>
<b>Email:</b><br><br>[email protected]<br>[email protected]<br>[email protected]<br>[email protected]<br><br><br>
</p>
</div>
</div>
<p class="text-footer">
Copyright @-All rights are reserved
</p>
</section>
</body>
</html>