-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactus.html
147 lines (147 loc) · 3.88 KB
/
contactus.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
<!DOCTYPE html>
<html lang="en">
<head>
<link
href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,700;1,300;1,400;1,500;1,600;1,700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Baloo+Tamma+2:wght@400&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@1,500&display=swap"
rel="stylesheet"
/>
<title>Contact_us</title>
<style>
body {
background-color: rgb(243, 245, 247);
margin: 0em;
}
.lev1 {
display: grid;
grid-template-rows: minmax(1em auto);
font-family: "Nunito", sans-serif;
}
.top {
background-image: url("images/sanit2e3.jpg");
height: 220px;
padding-left: 1em;
}
.head {
font-family: "Baloo Tamma 2", cursive;
font-size: 4.8em;
line-height: 1em;
font-weight: bolder;
padding-top: 10px;
}
.nav {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 2fr;
background-color: rgb(48, 171, 228);
height: 2.5em;
text-align: center;
align-self: center;
line-height: 2.5em;
font-size: 1.3em;
}
.nav :hover {
background-color: rgb(0, 146, 214);
}
.aboutus {
display: grid;
grid-template-columns: 1fr;
}
</style>
</head>
<body>
<div class="lev1">
<div class="top">
<div class="head">
<span style="color: rgb(81, 175, 14)">clean</span
><span style="color: rgb(31, 177, 213)">co</span>
</div>
<div style="font-size: 2.2em; font-family: 'EB Garamond', serif">
One stop for all your sanitary needs
</div>
</div>
<div class="nav">
<div>
<a style="color: black; text-decoration: none" href="home.html"
>Home
</a>
</div>
<div>
<a style="color: black; text-decoration: none" href="login.html"
>Login</a
>
</div>
<div>
<a style="color: black; text-decoration: none" href="signup.html"
>Signup</a
>
</div>
<div>
<a style="color: black; text-decoration: none" href="aboutus.html"
>About us</a
>
</div>
<div>
<a style="color: black; text-decoration: none" href="contactus.html"
>Contact us</a
>
</div>
</div>
<div class="aboutus">
<div>
<div style="font-size: 2.3em; padding: 15px; color: rgb(0, 85, 83)">
Contact:
</div>
<div
style="
font-size: 1.5em;
padding-left: 15px;
background-color: rgb(189, 223, 223);
"
>
Address:
</div>
<div style="padding: 15px; font-size: 1.2em">
Cleanco building, <br />
7th line, Lakshmipuram, <br />
near Pantaloons, <br />
Guntur-522007
</div>
<div
style="
font-size: 1.5em;
padding-left: 15px;
background-color: rgb(189, 223, 223);
"
>
Call us:
</div>
<div style="padding: 15px; font-size: 1.2em">
+918985083224 <br />
+918331992669 <br />
0863 584277
</div>
<div
style="
font-size: 1.5em;
padding-left: 15px;
background-color: rgb(189, 223, 223);
"
>
Email us:
</div>
<div style="padding: 15px; font-size: 1.2em">
[email protected]<br />
</div>
</div>
</div>
</div>
</body>
</html>