-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (100 loc) · 4.93 KB
/
index.html
File metadata and controls
108 lines (100 loc) · 4.93 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
<!DOCTYPE HTML>
<head>
<link href="css/reset.css" rel="stylesheet">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous">
<link href="css/base.css" rel="stylesheet">
<link href="css/home.css" rel="stylesheet">
<link href="results.html" rel="html">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<nav class="navbar navbar-dark navbar-expand-md bg-faded justify-content-center fixed-top">
<a href="/" class="navbar-brand d-flex w-50 mr-auto text-uppercase text-white">RankUp</a>
<button class="navbar-toggler text-white" type="button" data-toggle="collapse" data-target="#collapsingNavbar3">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse w-100" id="collapsingNavbar3">
<ul class="nav navbar-nav ml-auto w-100 justify-content-end">
<li class="nav-item">
<a class="nav-link text-uppercase text-white" href="#">how it works</a>
</li>
<li class="nav-item">
<a class="nav-link text-uppercase text-white" href="#">signup / login</a>
</li>
</ul>
</div>
</nav>
<main>
<h1>Looking for Your Next Adventure?</h1>
<p>
Turn Transitions into Opportunities</p>
<div class="gray-square" ><img src="/css/assets/pic4.jpg" width=100%/>
</div>
<div class="intro-text">
<p>
You are <strong id="sl-typed"></strong><br />You want to be <strong id="shift-typed"></strong>
</p>
<p>
For military families, transitions are difficult. Rankup automates the job hunt for military spouses and retired service members. Upload your resume today and find
job matches instantly!
</p>
</div>
<button class="text-white orange-round"><a href="#rank-me-up">GET STARTED</a></button>
</main>
<section id="rank-me-up">
<h2>I am looking for jobs in <select> <option value="Seattle, Washington">Seattle, Washington</option><option value="Portland, Oregon">Portland, Oregon</option></select></h2>
<h2><input type="file" id="fileElem" accept=".doc, .pdf, .txt" style="display:none" onchange="handleFiles(this.files)">
<a href="#" id="fileSelect">Upload your resume</a>
<div id="fileList">
<p>No files selected!</p>
</div>
</h2>
<button class="text-white orange-round"><a href="./results.html">RANK ME UP</a></button>
</section>
<section class="how-it-works">
<h2>HOW IT WORKS</h2>
<div id="container1">
<div class="image-left"><img src="/css/assets/pic1.jpg" width=500px/></div>
<div class="how-it-works-text">
<p class="p-heading">Search 72 Sites in One Click</p>
<p>Gone are the days of job hunting on hundreds of websites and job boards. Upload your resume as a pdf or doc, select your location, and we filter through 72 websites for you to find local jobs that match your skill set.</p>
</div>
</div>
<div id="container2">
<div class="how-it-works-text">
<p class="p-heading">Match with Machine Learning</p>
<p>Using machine learning, we match data from your resume to potential employer’s job descriptions. We send you personalized jobs that fit your profile. See how you stack up!</p>
</div>
<div class="image-left"><img src="/css/assets/pic2.jpg" width=500px/></div>
</div>
<div id="container3">
<div class="image-left"><img src="/css/assets/pic3.jpg" width=500px/></div>
<div class="how-it-works-text">
<p class="p-heading">Advanced API Tracking</p>
<p>Algorithms track the types of jobs you’re interested in, increasing and decreasing weighting based on clicks and saves. Over time, be notified of new job listings that fits your profile.</p>
</div>
</div>
</section>
<div id="im-ready">
<h2>IM READY</h2>
<div id="im-ready-div">
<p>Ready? Share with us your location and resume and we’ll help you get started on your next adventure.</p>
</div>
<button class="text-white orange-round"><a href="#rank-me-up">GET STARTED</a></button>
</div>
<section id="footer">
<div>
<h3>MENU</h3>
<p>Home</p>
<p>FAQ</p>
<p>Contact Us</p>
</div>
</section>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.bundle.min.js" integrity="sha384-pjaaA8dDz/5BgdFUPX6M/9SUZv4d12SUPF0axWc+VRZkx5xU3daN+lYb49+Ax+Tl"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.9"></script>
<script src="./index.js"></script>
</body>