-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
39 lines (39 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact | Aditya Multispeciality.</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css">
<link rel="stylesheet" href="contact.css">
</head>
<body>
<div class="contact-page">
<h2>Get in touch</h2>
<div class="contact-info">
<div class="item">
<i class="icon fas fa-home"></i>
Karnataka, India
</div>
<div class="item">
<i class="icon fas fa-phone"></i>
+91 9632818888
</div>
<div class="item">
<i class="icon fas fa-envelope"></i>
</div>
<div class="item">
<i class="icon fas fa-clock"></i>
Mon - Fri 8:00 AM to 6:00 PM
</div>
</div>
<form action="" class="contact-form">
<input type="text" class="textb" placeholder="Your Name">
<input type="email" class="textb" placeholder="Your Email">
<textarea placeholder="Your Message"></textarea>
<input type="submit" class="btn" value='Send'>
</form>
</div>
</body>
</html>