-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
131 lines (109 loc) · 3.05 KB
/
index.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!---Log-in-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IS</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
background-image: url('w1.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
height: 100dvh;
}
header {
background-color: #19253b59;
box-shadow: 0 0 36px 0;
backdrop-filter: blur(3px);
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 80%;
margin: auto;
padding: 1.2rem 0rem;
}
.logo {
font-size: 1.3rem;
font-weight: 800;
}
.logo p {
color: #fff;
text-decoration: none;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
padding: 0;
background-color: transparent;
overflow: hidden;
}
li {
padding: 0rem 1.1rem;
float: left;
}
li a {
color: #fff;
text-decoration: none;
font-size: 1rem;
font-weight: 600;
letter-spacing: .7px;
}
li a:hover {
color: #91b2ff;
transition: all .3s ease-in-out;
}
.button {
display: flex;
gap: 1rem;
}
.button input {
font-weight: 500;
color: #fff;
border: 1px solid #fff;
background-color: transparent;
padding: .5rem 1rem;
border-radius: 20%;
cursor: pointer;
}
.button input:hover {
background-color: #fff;
color: #152939;
transition: all .3s ease-in-out;
}
</style>
</head>
<body>
<header>
<nav>
<div class="logo">
<p>Image Steganography</p>
</div>
<ul>
<li><a href="index10.html" class="active">Home</a></li>
<li><a href="img3.html">Instructions</a></li>
<li><a href="res.html">Resources</a></li>
<li><a href="cont.html">Contact</a></li>
</ul>
<div class="button">
<input type=button onClick="location.href='sign.html'" value="Sign In">
<input type=button onClick="location.href='login.html'" value='Log In'>
</div>
</nav>
</header>
</body>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
</style>
</html>