forked from tasminoni/CSE370-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
114 lines (92 loc) · 1.81 KB
/
test.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Navbar Example</title>
<style>
.navbar {
overflow: hidden;
background-color: #333;
}
.navbar a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 20px;
text-decoration: none;
}
.navbar a:hover {
background-color: #ddd;
color: black;
}
.navbar .login {
float: right;
}
.navbar input[type=text] {
padding: 6px;
margin-top: 8px;
margin-right: 16px;
border: none;
font-size: 17px;
}
@media screen and (max-width: 600px) {
.navbar a, .navbar input[type=text] {
float: none;
display: block;
text-align: left;
width: 100%;
margin: 0;
padding: 14px;
}
.navbar input[type=text] {
margin-top: 0;
}
.navbar .login {
float: none;
}
}
body {
background-image: url('images/img.jpeg');
background-size: cover;
background-repeat: no-repeat;
}
</style>
</head>
<body>
<div class="navbar">
<a href="test.html">Home</a>
<a href="reqlogin.php">View Properties</a>
<a href="contact.html">Contact</a>
<a href="about.html">About</a>
<a href="reqlogin.php">Blog</a>
<a href="customer_care.php">Customer Care</a>
<div class="login">
<a href="login.php">Login</a>
</div>
<div class="login">
<a href="adminlogin.php">Admin</a>
</div>
</div>
</body>
<style>
.welcome-box {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
color: white;
}
.welcome-box h2 {
text-align: center;
font-size: 36px;
color: rgb(0, 0, 0);
margin: 0;
line-height: 1.5; /
}
</style>
<div class="welcome-box">
<h2>Welcome <br>to <br>To-Let Management <br>Project</h2>
</div>
</html>