-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.html
46 lines (46 loc) · 1.37 KB
/
welcome.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GenSec - Welcome</title>
<style>
body {
background-color: #FFDAB9; /* Peach background */
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
}
.container {
text-align: center;
color: #D2042D; /* Cherry red text */
}
.welcome-message {
font-size: 2em;
margin-bottom: 20px;
}
.get-password-btn {
background-color: #D2042D; /* Cherry red button */
color: white;
padding: 10px 20px;
font-size: 1em;
border: none;
border-radius: 5px;
cursor: pointer;
}
.get-password-btn:hover {
background-color: #b90325; /* Darker cherry red on hover */
}
</style>
</head>
<body>
<div class="container">
<div class="welcome-message">Welcome to GenSec!</div>
<p>Your ultimate solution for generating random, secure passwords.</p>
<button class="get-password-btn" onclick="window.location.href='index.html'">Get a Password Now</button>
</div>
</body>
</html>