-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpag3.html
139 lines (116 loc) · 3.1 KB
/
pag3.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
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Signing you in</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #000;
background-image: url('book_background.jpg'); /* You can set your own image */
background-size: cover;
background-position: center right;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
color: white;
}
nav {
display: flex;
justify-content: flex-end;
padding: 20px;
}
nav a {
color: white;
margin-left: 20px;
text-decoration: none;
font-size: 1.2rem;
position: relative;
}
nav a::after {
content: attr(data-count);
display: inline-block;
background-color: #fff;
color: black;
border-radius: 50%;
padding: 2px 5px;
font-size: 1 rem;
position: absolute;
top: -8px;
right: -8px;
display: none; /* Hide by default */
}
nav a#career[data-count]:after {
display: inline-block; /* Show only for the Career link */
}
.button-container {
display: flex;
margin-top: 10px;
justify-content: center
}
.next-button {
background-color: #f39c12; /* Matches the orange color */
color: black;
border: none;
padding: 10px 30px;
font-size: 1.2em;
border-radius: 10px;
cursor: pointer;
text-transform: uppercase;
transition: background-color 0.3s ease;
text-align: center;
}
.next-button:hover {
background-color: #d35400;
}
.content {
position: absolute;
top:10px;
left:20px;
margin:30px;
display:flex;
align-items: center;
font-size: 20px;
}
ul{
list-style-type: none;
padding:20px;
}
li {
margin-left: 10px;
}
.content h1 {
font-size: 3rem;
font-weight: 300;
}
.content h1 span {
color: orange;
}
footer {
padding: 20px;
}
</style>
</head>
<body>
<nav>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
<a href="#" id="career" data-count="2">Career</a>
</nav>
<div class="content">
<h1>Signing you <span>in...</span></h1>
</div>
<div class="button-container">
<a href="page4.html" class="next-button">Next</a>
</div>
</a>
</div>
<footer>
</footer>
</body>
</html>