-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontact.html
83 lines (77 loc) · 3.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style/contact-style.css?version=">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<title></title>
</head>
<body>
<section class="contact-section">
<div class="contact-bg">
<h3>Get in Touch with Us</h3>
<h2>contact us</h2>
<div class="line">
<div></div>
<div></div>
<div></div>
</div>
</div>
<div class="contact-body">
<div class="contact-info">
<div>
<span><i class="fas fa-mobile-alt"></i></span>
<span>Phone No.</span>
<span class="text">9988776655</span>
</div>
<div>
<span><i class="fas fa-envelope-open"></i></span>
<span>Email-id</span>
<span class="text">team@hungersolverz.cdh</span>
</div>
<div>
<span><i class = "fas fa-map-marker-alt"></i></span>
<span>Address</span>
<span class = "text">Chandigarh University</span>
</div>
<div>
<span><i class ="fas fa-clock"></i></span>
<span>Opening Hours</span>
<span class="text">Monday - Sunday<br>(11:00 AM to 11:00 PM)</span>
</div>
</div>
<div class = "contact-form">
<form>
<div>
<input type = "text" class = "form-control" placeholder="First Name">
<input type = "text" class = "form-control" placeholder="Last Name">
</div>
<div>
<input type = "email" class = "form-control" placeholder="E-mail">
<input type = "text" class = "form-control" placeholder="Phone">
</div>
<textarea rows = "5" placeholder="Message" class = "form-control"></textarea>
<input type = "submit" class = "send-btn" value = "send message">
</form>
<div>
<img src = "./img/contact.jpeg" alt = "not found">
</div>
</div>
</div>
<div class = "contact-footer">
<h3>Follow Us</h3>
<div class = "social-links">
<a href = "#" class = "fab fa-facebook-f"></a>
<a href = "#" class = "fab fa-twitter"></a>
<a href = "#" class = "fab fa-instagram"></a>
<a href = "#" class = "fab fa-linkedin"></a>
<a href = "#" class = "fab fa-youtube"></a>
</div>
</div>
</section>
</body>
</html>