-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.html
More file actions
142 lines (123 loc) · 3.73 KB
/
Copy pathMain.html
File metadata and controls
142 lines (123 loc) · 3.73 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
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
140
141
142
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Talent Reach</title>
<link rel="stylesheet" href="colors.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<style>
body {
background-image: url('./pawel-czerwinski-6lQDFGOB1iw-unsplash.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-color: #f2f2f2;
font-family: Arial, sans-serif;
color: #fff;
margin: 0;
padding: 0;
height: 100vh;
}
header {
display: flex;
justify-content: space-around;
align-items: center;
padding: 20px;
background-color: rgb(255, 255, 255); /* Dark background for the header */
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
}
header a {
padding: 10px 20px;
background-color: #4CAF50;
color: white;
text-decoration: none;
border-radius: 5px;
font-size: 1.1rem;
transition: background-color 0.3s ease;
}
header a:hover {
background-color: #45a049;
}
.main-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
height: 100%;
background: rgb(255, 255, 255);
padding: 20px;
margin-top: 100px;
}
h1 {
font-size: 2.5rem;
margin-bottom: 20px;
}
p {
font-size: 1.2rem;
margin-bottom: 20px;
}
.login-button-container a {
padding: 15px 30px;
background-color: #8a11d1;
color: white;
text-decoration: none;
border-radius: 5px;
font-size: 1.2rem;
transition: background-color 0.3s ease;
}
.login-button-container a:hover {
background-color: #9d00ff;
}
.info h3 {
font-size: 1.8rem;
margin-top: 40px;
color: black;
}
.info p {
font-size: 1.1rem;
margin-top: 10px;
color: black;
}
</style>
</head>
<body>
<div class="container">
<ul class="nav nav-tabs">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/aboutus">About us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/jobs">Jobs</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/courses">Courses</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/contact">Contact</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link disabled" aria-disabled="true">Disabled</a>
</li> -->
</ul>
<div class="main-container">
<div class="login-button-container">
<p>HELLOOOOO</p>
</div>
<div class="info">
<h1 style="color: black;">HELLOOO THERE!!</h1>
<p>We're excited to have you join the TalentReach community!</p>
<p>Here, you can connect with others, discover new things, learn new skills, and find inspiration.</p>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>