-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
43 lines (43 loc) · 1.43 KB
/
Copy pathcontact.html
File metadata and controls
43 lines (43 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AVANI - Contact Us</title>
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="styles.css">
<style>
.footer{
text-align: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 35px;
color: teal;
}
</style>
</head>
<body>
<div class="container">
<div class="sidebar">
<img src="logo.png" alt="AVANI Logo">
<a href="overview.html" class="menu-item"><span class="icon">📄</span>Overview</a>
<a href="sensorsdata.html" class="menu-item"><span class="icon">📡</span>Sensors Data</a>
<a href="reports.html" class="menu-item"><span class="icon">📑</span>Report</a>
<a href="architechture.html" class="menu-item"><span class="icon">📑</span>Architechture</a>
<a href="contact.html" class="menu-item"><span class="icon">💬</span>Contact Us</a>
</div>
<div class="content">
<h1>Contact Us</h1>
<div class="contact-card">
<p><strong>Name:</strong> AVANI</p>
<p><strong>Email:</strong> support.avani@gmail.com</p>
<p><strong>Phone:</strong> (+91)123-456-7890</p>
</div>
<div class="footer">
ITER, Siksha 'O' Anusandhan,
<br>
Bhubaneswar, Odisha, India
</div>
</div>
</div>
</body>
</html>