-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (86 loc) · 3.24 KB
/
index.html
File metadata and controls
91 lines (86 loc) · 3.24 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/static/img/favicon-16.png" sizes="16x16">
<link rel="icon" type="image/png" href="/static/img/favicon-32.png" sizes="32x32">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="static/css/skillicious.main.css" />
<style>
.banner {
background-image: url("static/img/office_background_1079x487.jpg");
background-repeat: no-repeat;
background-position: right top;
background-color: #FFF;
}
.jumbotron {
background-color: rgba(240,240,240,0.7);
}
.jumbotron h1 {
margin-top: 30px;
margin-bottom: 20px;
}
.jumbotron p {
margin-top: 30px;
color: #444;
max-width: 80%;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand logo" href="/">Skillicious</a>
</div>
<div id="navbar-container" id="navbar" class="navbar-collapse collapse">
<!-- user info React component -->
</div><!--/.navbar-collapse -->
</div>
</nav>
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="banner">
<div class="jumbotron">
<div class="container text-center">
<h1>Let Your Dream Job Find You!</h1>
<p>Finding your dream job should be easy. Create your profile today and let companies compete for your talent.</p>
<p><a class="btn btn-primary btn-lg btn-success" href="/register" role="button">Get Started Now!</a></p>
</div>
</div>
</div>
<div class="container">
<div class="row text-center">
<h1>How It Works</h1>
</div>
<!-- Example row of columns -->
<div class="row">
<div class="col-md-4">
<h3>Register</h3>
<p>Register for a free account and complete your profile. </p>
</div>
<div class="col-md-4">
<h3>Jobs Find You</h3>
<p>Companies search for you based on your skills, offering positions that are perfect for you. </p>
</div>
<div class="col-md-4">
<h3>Apply</h3>
<p>Choose the companies you like and set up interviews with the decision maker.</p>
</div>
</div>
</div> <!-- /container -->
<footer class="text-center">
<p>© Skillicious 2015</p>
</footer>
</body>
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script type="text/javascript" src="static/index.js"></script>
</html>