-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.html
350 lines (300 loc) · 6.64 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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
<!DOCTYPE html>
<html>
<head>
<title>Contact/THINK</title>
<link rel="icon" href="thinkLOGO.png">
<link rel="stylesheet" href="global.css">
<script type="text/javascript" src="welcomescript.js"></script>
<style>
.h1 {
padding: 50px;
text-align: center;
font-size: 200%;
background-color:#00008B;
color: white;
}
label {
display: block;
font: .9rem 'Fira Sans', sans-serif;
}
input[type='submit'],
label {
margin-top: 1rem;
}
body {margin:0;}
.navbar {
overflow: hidden;
background-color: #ff531a;
position: sticky;
right: 0;
width: 100%;
}
.navbar a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.footer {
left: 0;
width:100%;
height:150px;
bottom: 0;
width: 100%;
background-color: #666666;
color: black;
text-align: center;
}
.solid {
border: green solid 4px;
}
body {
margin:10;
border: 10px solid black;
background-color: #f1f1f1;
}
.navar b input[type=text] {
float: right;
padding: 6px;
border: none;
margin-top: 8px;
margin-right: 16px;
font-size: 17px;
}
-start of thigh-
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0;
}
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
.column {
float: left;
width: 100%;
margin-bottom: 16px;
padding: 0 8px;
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
margin: 5px;
}
.about-section {
padding: 50px;
text-align: center;
background-color: #474e5d;
color: white;
}
.container {
padding: 0 16px;
}
.container::after, .row::after {
content: "";
clear: both;
display: table;
}
.title {
color: gray;
}
.button {
border: none;
outline: 0;
display: inline-block;
padding: 8px;
color: white;
background-color: #000;
text-align: center;
cursor: pointer;
width: 100%;
}
.button:hover {
background-color: #555;
}
@media screen and (max-width: 650px) {
.column {
width: 100%;
display: block;
}
}
-end of thing-
.realy {
background-color: #4CAF50;
}
.navbar a:hover {
float: left;
display: block;
background-color: #333;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
///////////////
* {box-sizing: border-box;}
/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
background-color: #000;
color: white;
padding: 16px 20px;
border: none;
cursor: pointer;
width: 280px;
}
/* The popup chat - hidden by default */
.chat-popup {
display: none;
position: fixed;
bottom: 0;
right: 15px;
border: 3px solid #f1f1f1;
z-index: 9;
}
/* Add styles to the form container */
.form-container {
max-width: 300px;
padding: 10px;
background-color: white;
}
/* Full-width textarea */
.form-container textarea {
width: 100%;
padding: 15px;
margin: 5px 0 22px 0;
border: none;
background: #f1f1f1;
resize: none;
min-height: 200px;
}
/* When the textarea gets focus, do something */
.form-container textarea:focus {
background-color: #ddd;
outline: none;
}
/* Set a style for the submit/send button */
.form-container .btn {
background-color: #4CAF50;
color: white;
padding: 16px 20px;
border: none;
cursor: pointer;
width: 100%;
margin-bottom:10px;
opacity: 0.8;
}
/* Add a red background color to the cancel button */
.form-container .cancel {
background-color: red;
}
/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
opacity: 1;
}
</style>
</head>
<body>
<div class="h1">
<h1>Contact</h1>
</div>
<div class="navbar">
<a href="Home.html">Home</a>
<a href="Atom.html">Research</a>
<a href="join.html">Join us</a>
<a href="About1.html">About us</a>
<a href="password.html">Log out</a>
<a href="SeC.html">COVID-19</a>
<a href=""></a>
<a href=""></a>
<a href=""></a>
<a href=""></a>
<a href=""></a>
<a href=""></a>
<a href=""></a>
<a href=""></a>
<a href=""></a>
<a href=""></a>
<a href=""></a>
<a href=""></a>
<a href=""></a>
<a href=""></a>
<a href=""></a>
<a href=""></a>
<a href=""></a>
<a href=""></a>
<a href=""></a>
<a href=""></a>
<a href=""></a>
<a></a>
<a></a>
<a></a>
<a></a>
<a></a>
<a></a>
<div class ="realy">
<a class="active" href="pro.html"><img style="width: 40px; height: 40px; border-radius: 100%;" src="un.png" alt="Avatar" ></a>
</div>
</div>
<div class="solid">
<div class="row">
<div class="column">
<div class="card">
<div class="container">
<div style="background-color:lightgrey;float: left; width: 200px;margin:10px">
<h2 style="margin:10px">Latest News</h2>
<p style="margin:10px">Do you know the latest on COVID-19? Want to learn more?</p>
<p style="margin:10px">Click on these links for more infomation on COVID, or go to our new <a href="Sec.html">Covid count page</a></p>
<br>
<a style="margin:10px" href="https://www.bing.com/covid/local/unitedstates" target="_blank" >Covid tracker</a>
<br>
<br>
<a style="margin:10px" href="https://covid19.who.int/" target="_blank">WHO covid World</a>
<br>
<br>
<a style="margin:10px" href="https://www.cdc.gov/coronavirus/2019-ncov/index.html" target="_blank" >CDC website</a>
<br>
<br>
<a style="margin:10px" href="https://www.cdc.gov/coronavirus/2019-ncov/if-you-are-sick/steps-when-sick.html" target="_blank">Click here if you are sick!</a>
<br>
<br>
<a style="margin:10px" href="https://www.cdc.gov/coronavirus/2019-ncov/symptoms-testing/symptoms.html#cdc-chat-bot-open" target="_blank">CDC testing </a>
<br><br>
</div>
<div style="float: left; width: 500px;margin:25px">
<h1> Contact us:</h1>
<h3><b>Get in touch and let us know how we can help.</b> </h3>
<h3> <br>PHONE:</h3>
<f><i> +1 123-456-7890 </i></f>
<h3> <br>Email:</h3
<f><i>
<p><a href="mailto:vermadeetya@gmail.com">vermadeetya@gmail.com</a></p>
</i></f>
<h3> <br>Owner:</h3>
<f><i> Divyang Verma </i></f>
<p></p>
</div>
<div style="background-color:lightgrey;float: right; width: 400px;margin:10px">
<img src="Talk.png" style="width:100%">
</div>
<br style="clear: left;" />
</div>
</div>
</div>
</div>
</div>
<c><br><br><br><br></c>
<!-- <div include-footer = "footer.html"></div> -->
<!-- <script> -->
<!-- includeFooter(); -->
<!-- </script> -->
<div class=footer>
<br/>Owner of THINK S.P.A.R.K. and this website: Divyang Verma
<br/><i>Contact: +1 123-456-7890.</i>
<br/>Maybe subject to copyright<br/>
</div>
</body>
</html>