-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
65 lines (60 loc) · 3.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Start page</title>
<link rel="stylesheet" href="./assets/styles/starter.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/05be7076d9.js" crossorigin="anonymous"></script>
</head>
<body>
<header class="text-left p-4 custom-header">
<h3 class="h3 custom-logo">
<i class="fa-solid fa-magnifying-glass" style="color: #e99607;"></i>
Job Search Tracker
</h3>
</header>
<main>
<div class="container-fluid mt-5 mb-5 pt-5 pb-5 description">
<div class="row justify-content-center ">
<div class="col-sm-9 text-center">
<h1 class="mt-3 mb-5">Your Personal Job Search Assistant</h1>
<p class="mb-5">
Are you tired of the scattered notes, endless emails, and missed opportunities in your job search? </br>
Look no further – Job Search Tracker is here to streamline your job hunting experience. </br>
Job Tracker is a comprehensive app designed to empower you in managing and tracking your job search
progress with ease.</br>
You can create cards with information about the position you've applied, filter cards by job type and job stage,
see the cities on the map.
</p>
<img src="./assets/images/job-search-choice.jpg" alt="Job Search Choice" class="mb-4">
<div class="row">
<div class="col-md-6 mb-3 d-flex justify-content-md-end justify-content-center">
<button class="btn btn-success shadow start py-2 px-5 mt-3 custom-margin me-1" type="button" id="btn-start">
Start journey
</button>
</div>
<div class="col-md-6 mb-3 d-flex justify-content-md-start justify-content-center">
<button class="btn btn-warning shadow start py-2 px-5 mt-3 custom-margin ms-1" type="button" id="btn-dashboard">
See dashboard
</button>
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="footer text-center py-3 px-4 custom-footer">
© 2024 All rights reserved. </br>
Coded by Rupesh Magar and Maria Yuzba
</footer>
<!-- jQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="./assets/script/script.js"></script>
</body>
</html>