-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
34 lines (32 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Infineezsolutions</title>
<link rel="stylesheet" href="styles.css">
<script defer src="script.js"></script>
</head>
<body>
<header>
<img src="topleft.png" alt="Left Logo" class="logo left-logo">
<div class="hamburger" id="hamburger-icon">
☰
</div>
<nav>
<ul class="menu" id="menu">
<li><a href="index.html">Home</a></li>
<li><a href="Internships.html">Internships</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<img src="topright.png" alt="Right Logo" class="logo right-logo">
</header>
<main>
<h1>Contact Us</h1>
<p><strong>Office Address:</strong> Flat 001, Sector- 2, Opp Ring Road, HSR Layout, Bengaluru- 560102</p>
<p><strong>Email:</strong>[email protected]</p>
<p><strong>Phone:</strong> +919739793681</p>
</main>
</body>
</html>