-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApplication2.html
More file actions
69 lines (58 loc) · 1.53 KB
/
Copy pathApplication2.html
File metadata and controls
69 lines (58 loc) · 1.53 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Applications - First Class Apartments</title>
<style>
/* Styles for the container and navbar */
* { box-sizing: border-box; margin: 0; padding: 0; }
body, h1, h2, h3, p { margin: 0; padding: 0; }
body { font-family: 'Arial', sans-serif; color: #333; background: #f4f4f4; }
.container { width: 80%; max-width: 1200px; margin: auto; padding: 0; }
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 0;
background: #000;
}
.navbar ul { list-style-type: none; display: flex; gap: 20px; }
.navbar a {
text-decoration: none;
color: #fff;
font-weight: bold;
}
.navbar a:hover { color: yellow; }
.header-section {
text-align: center;
padding: 20px 0;
background: #fff;
}
.header-section h1 {
color: #333;
font-size: 2.5em;
margin-bottom: 10px;
}
/* Add additional styles if needed */
</style>
</head>
<body>
<header class="navbar container">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="apartments.html">Apartments</a></li>
<li><a href="applications.html">Applications</a></li>
</ul>
</nav>
</header>
<div class="header-section container">
<h1>Applications</h1>
</div>
<div class="container">
<!-- Your applications page content goes here -->
</div>
</body>
</html>