-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (81 loc) · 3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SwipeStart - Find Your Dream Job</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
/>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="bg-primary text-white text-center py-5">
<h1>Welcome to SwipeStart</h1>
<p>Your gateway to finding your dream job!</p>
</header>
<section id="features" class="py-5">
<div class="container">
<h2 class="text-center">Features</h2>
<div class="row">
<div class="col-md-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Easy Job Search</h5>
<p class="card-text">
Find jobs that match your skills and interests with our
intuitive search feature.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Personalized Recommendations</h5>
<p class="card-text">
Receive tailored job recommendations based on your profile and
preferences.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Easy Application Process</h5>
<p class="card-text">
Apply for jobs with just a few clicks and track your
applications effortlessly.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="prototype" class="py-5 text-center">
<h2>Explore Our Prototype</h2>
<iframe
style="border: 1px solid rgba(0, 0, 0, 0.1)"
width="800"
height="500"
src="https://embed.figma.com/proto/ETFqI5hNAAfwJWWsfWmbMe/SwipeStart?page-id=0%3A1&node-id=161-103&node-type=canvas&viewport=5674%2C-7043%2C0.32&scaling=scale-down&content-scaling=fixed&starting-point-node-id=81%3A261&embed-host=share"
allowfullscreen
></iframe>
</section>
<section id="get-started" class="bg-light py-5 text-center">
<h2>Ready to Get Started?</h2>
<p class="email">
Send email to [email protected] to learn more
</p>
</section>
<footer class="text-center py-4">
<p>© 2024 SwipeStart. All rights reserved.</p>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>