-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
105 lines (93 loc) · 2.83 KB
/
home.html
File metadata and controls
105 lines (93 loc) · 2.83 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="shortcut icon"
href="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQmUUSo7THCDrJG629AyXKTeQr1Cl-CpU6jgQ4WD63gmZYyrvU6SrKx17XxiIH7D8z7M_w&usqp=CAU">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<style>
body {
/* background-color: rgb(232, 229, 229); */
background-color: black;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
overflow-y: hidden;
}
.signup,
.login,
.about {
list-style: none;
padding: 0px 15px;
}
.icon {
margin-right: auto;
}
.navbar {
display: flex;
box-sizing: border-box;
background-color: black;
box-shadow: 1px 1px 10px black;
backdrop-filter: blur(20px);
height: 70px;
margin: -7px -7px 0px -7px;
padding-right: 20px;
padding-top: 5px;
width: 100%;
justify-content: end;
align-items: center;
position: fixed;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.navbar a {
font-size: 25px;
color: white;
text-decoration: none;
border: 2px solid black;
border-radius: 10px;
padding: 1px 5px;
transition: all 0.3s;
}
.navbar a:hover {
cursor: pointer;
background-color: black;
color: rgb(0, 150, 200);
border: 2px solid rgb(0, 150, 200);
}
.navbar i {
font-size: 30px;
display: flex;
}
.img {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.img img {
width: 500px;
height: 500px;
border-radius: 50%;
position: fixed;
}
</style>
</head>
<body>
<div class="container1">
<ul class="navbar">
<div class="signup">
<a href="signup1.php">Sign Up</a>
</div>
<div class="login">
<a href="login1.php">Log In</a>
</div>
<div class="about">
<a href="about.html">About Us</a>
</div>
</ul>
<div class="img">
<img src="logo.png" height="500px" width="500px">
</div>
</div>
</body>
</html>