forked from Student-Chapter-CSE/vaani
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
66 lines (62 loc) · 2.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<link rel="stylesheet" href="styles/contact.css">
</head>
<body>
<nav class="navbar">
<div class="navdiv">
<div class="clg">
<a href="index.html">
<img id="aot" src="assets/nav_aoticon.png">
</a>
</div>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="registration.html">Registration</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
<div class="contact-section">
<h1>Contact Us</h1>
<p class="subtext"><b>Any Questions or remarks?</b></p>
<div class="contact-info">
<p><span>Dr. Arindrajit Pal</b></span>: 9433250749</p><br>
<p><span><b>Dr. Subir Panja</b></span>: 9126322288</p>
</div>
</div>
<div class="footer">
<div class="footer-item">
<a href="https://mail.google.com/mail/?view=cm&fs=1&[email protected]", target="_blank">
<img src="assets/contactus_mail.png" alt="Email Icon">
</a>
<p><b>[email protected]</b></p>
</div>
<div class="footer-item">
<a href="https://www.google.com/maps/place/Academy+of+Technology/@22.9528224,88.3739765,17z/data=!3m1!4b1!4m6!3m5!1s0x39f8930eeb863655:0xb3a6adf26d41d0b5!8m2!3d22.9528224!4d88.3765514!16s%2Fm%2F0b6h_x3?entry=ttu&g_ep=EgoyMDI0MTAyOS4wIKXMDSoASAFQAw%3D%3D", target="_blank">
<img src="assets/contactus_home.png" alt="Home Icon" id="homeicon">
</a>
<p><b>Academy of Technology, Aedconagar, G.T. Road, Adisaptagram, Hooghly, WB-712121</b></p>
</div>
<div class="footer-item">
<a href="https://aot.edu.in/", target="_blank">
<img src="assets/contactus_web.png" alt="Website Icon">
</a>
<p><b>www.aot.edu.in</b></p>
</div>
</div>
</body>
</html>