-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutus.html
More file actions
50 lines (46 loc) · 1.05 KB
/
aboutus.html
File metadata and controls
50 lines (46 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About Us</title>
<style>
/* Global resets */
body, html {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f4f4f9;
}
/* Navbar styles */
.navbar {
background-color: #333;
padding: 14px 20px;
text-align: center;
}
.navbar a {
color: white;
padding: 14px 20px;
text-decoration: none;
font-size: 1.2rem;
margin: 0 10px;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.navbar a:hover {
background-color: #575757;
}
</style>
</head>
<body>
<!-- Navbar -->
<div class="navbar">
<a href="index.html">Home</a>
<a href="index.html">Chat</a>
<a href="taskmanager.html">Task Manager</a>
<a href="aboutus.html">About Us</a>
</div>
<h1>About Us</h1>
<p>Welcome to the About Us page!</p>
<p>MiniSheenasNest Chat is a platform designed to connect users through a simple and intuitive messaging system.</p>
</body>
</html>