-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
126 lines (107 loc) · 2.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recruitment Platform</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap">
<style>
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
display: flex;
flex-direction: column;
min-height: 100vh;
}
header {
background-color: #5191fd;
color: white;
padding: 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 24px;
font-weight: 700;
margin-right: 20px;
}
nav ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
}
nav ul li {
margin-left: 20px;
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: 1000;
transition: color 0.3s;
}
nav ul li a:hover {
color: #ffeb3b;
}
.hero {
text-align: center;
padding: 60px 20px;
background: linear-gradient(135deg, #50caa3, #1d664f);
color: white;
margin-top: 3px;
flex: 1;
}
.hero h1 {
font-size: 50px;
margin-bottom: 10px;
}
.hero p {
font-size: 40px;
margin-bottom: 30px;
}
.cta-btn {
background-color: #ffeb3b;
color: #333;
padding: 15px 30px;
text-decoration: none;
border-radius: 5px;
font-weight: 700;
transition: background-color 0.3s;
}
.cta-btn:hover {
background-color: #ffc107;
}
footer {
text-align: center;
padding: 4px;
background-color: #333;
color: white;
width: 100%;
margin-top: auto;
}
</style>
</head>
<body>
<header>
<div class="logo">RecruitPro</div>
<nav>
<ul>
<li><a href="register.html">Register</a></li>
<li><a href="login.html">Login</a></li>
</ul>
</nav>
</header>
<section class="hero">
<h1>Connecting the Best Talent</h1>
<p>Your go-to platform for recruitment services</p>
<a href="register.html" class="cta-btn">Get Started</a>
</section>
<footer>
<p>© 2024 RecruitPro. All rights reserved.</p>
</footer>
</body>
</html>