-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutus.html
61 lines (52 loc) · 2.05 KB
/
aboutus.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<style>
#nav {
background-color: #f44336; /* Set the background color to match the form theme */
}
#nav a {
color: white; /* Ensure the links have white color */
}
#nav h4, #nav i {
color: white; /* Set icon and text color to white */
}
#right a {
color: white; /* Set the About us link color to white */
}
#btn1 a {
color: white; /* Set Sign In link color to white */
}
/* Mobile View: Stack the image and form properly */
@media (max-width: 768px) {
.container {
flex-direction: column; /* Stack the image and form vertically */
padding: 10px; /* Reduce padding for mobile */
max-width: 100%; /* Allow form to take full width */
}
}
</style>
</head>
<body>
<div id="nav" class="h-16 w-full fixed top-0 z-10 left-0 p-1">
<a href="./index.html" style="text-decoration: none;">
<h2 id="sustarch" class="absolute top-1/2 -translate-y-1/2 left-10 font-semibold text-base md:text-2xl text-white">Sustainable Automation</h2>
</a>
<div id="right" class="absolute right-0 top-1/2 -translate-y-1/2 mr-10 flex items-center gap-4 md:gap-6">
<a href="./aboutus.html" class="hidden md:visible">
<h4>About us</h4>
</a>
<h4 id="btn1" class="p-2 h-10 w-20 cursor-pointer border-white border-2 hidden items-center justify-center rounded-md md:flex">
<a href="./signin.html">Sign in</a>
</h4>
<i class="fa-solid fa-bell cursor-pointer text-base md:text-xl"></i>
</div>
</div>
</body>
</html>