forked from Tejaswika/Eventor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.html
More file actions
101 lines (61 loc) · 3.06 KB
/
footer.html
File metadata and controls
101 lines (61 loc) · 3.06 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="footer.css">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<footer>
<div class="main-content">
<div class="left box">
<h2>About us</h2>
<div class="content">
<p>Eventor is a portal for ABESEC students to get updated about campus event and competitions.</p>
<div class="social">
<a href="https://facebook.com"><span class="fab fa-facebook-f"></span></a>
<a href="https://twitter.com/"><span class="fab fa-twitter"></span></a>
<a href="https://instagram.com"><span class="fab fa-instagram"></span></a>
<a href="https://youtube.com"><span class="fab fa-youtube"></span></a>
</div>
</div>
</div>
<div class="center box">
<h2>Contact Us</h2>
<div class="content">
<div class="place">
<span class="fas fa-map-marker-alt"></span>
<span class="text">Campus -1, 19th KM Stone, NH 24, Ghaziabad, Uttar Pradesh 201009</span>
</div>
<div class="email">
<span class="fas fa-envelope"></span>
<span class="text">info@abes.ac.in</span>
</div>
<div class="phone">
<span class="fas fa-phone-alt"></span>
<span class="text">0120 713 5112</span>
</div>
</div>
</div>
<div class="right box">
<h2> Write to us</h2>
<div class="content">
<form action="#">
<div class="email">
<div class="text"> Your Email </div>
<input type="email" required>
</div>
<div class="msg">
<div class="text">Your Message </div>
<textarea id=".msgForm" rows="2" cols="25" required> </textarea>
</div>
<div class="btn">
<button type="submit">Send</button>
</div>
</form>
</div>
</div>
</div>
</footer>
</body>