-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
98 lines (93 loc) · 2.37 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
<html>
<head>
<meta name="viewport"
content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
body {
background-color: #f1f1f1;
padding: 20px;
font-family: Arial;
background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1462889/pat-back.svg');
background-position: center;
background-repeat: repeat;
background-size: 4%;
}
.section-center{
position: absolute;
top: 50%;
left: 0;
display: block;
width: 100%;
padding: 0;
margin: 0;
z-index: 6;
text-align: center;
transform: translateY(-50%);
}
.animate-charcter
{
text-transform: lowercase;
background-image: linear-gradient(
-225deg,
#231557 0%,
#44107a 29%,
#ff1361 67%,
#fff800 100%
);
background-size: auto auto;
background-clip: border-box;
background-size: 200% auto;
color: #fff;
background-clip: text;
text-fill-color: transparent;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: textclip 2s linear infinite;
display: inline-block;
font-size: 70px;
}
@keyframes textclip {
to {
background-position: 200% center;
}
}
.w1{
font-family: 'Helvetica Neue', sans-serif; font-size: 20px; font-weight: bold; letter-spacing: -1px; line-height: 0.5; color:grey;
}
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<a href = "index.html" style="position:absolute; top: 30px;
left: 30px;"><i class="fa fa-arrow-circle-left fa-3x"></i></a>
<header style="font-family: Trebuchet MS, sans-serif;
text-align: center;
font-size: 5em;
letter-spacing: -2px;
border-bottom: 2px solid black;
text-transform: uppercase;">How To Contact Us</header>
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<p class="w1">Send us an email at:</p>
<p class="animate-charcter">[email protected]</p>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center">
<p class="w1">For enquiries call:</p>
<p class="animate-charcter">+91-85917 19078</p>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center">
<p class="w1">For appointments call:</p>
<p class="animate-charcter">+91-85917 19078</p>
</div>
</div>
</div>
</body>
</html>