-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (64 loc) · 2.83 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
<!DOCTYPE>
<html>
<head>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<nav class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<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" href="#" >We Got Ye Jobs!</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-left">
<li><a href="dashboard.html"><span class="glyphicon glyphicon-pushpin" aria-hidden="false"></span>Create Jobs</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="Bootstrap.html">Sign Out</a></li>
<li><a href="Bootstrap.html">Sign In</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<div class="container-fluid">
<h1 class="text-center">List of Jobs</h1>
<div id="listOfJobs" class="jobList">
<div class="row">
<div class="col-md-4 job-pin text-left">
<h2 class="text-center text-success "><strong>Job Title</strong></h2>
<p class="lead text-info" >This sentence leads</p>
<p class="text-info"> This could have domething marked <mark>Important</mark></p>
<small class="text-info">This could be the small print stuff</small>
<br>
<button type="button" class="btn btn-success col-md-offset-3" >Details</button>
</div>
<div class="col-md-4 job-pin text-left">
<h2 class="text-center text-success "><strong>Job Title</strong></h2>
<p class="lead text-info" >This sentence leads</p>
<p class="text-info"> This could have domething marked <mark>Important</mark></p>
<small class="text-info">This could be the small print stuff</small><br>
<button type="button" class="btn btn-success col-md-offset-3">Details</button>
</div>
<div class="col-md-4 job-pin text-left">
<h2 class="text-center text-success "><strong>Job Title</strong></h2>
<p class="lead text-info" >This sentence leads</p>
<p class="text-info"> This could have domething marked <mark>Important</mark></p>
<small class="text-info">This could be the small print stuff</small></br>
<button type="button" class="btn btn-success col-md-offset-3">Details</button>
</div>
</div>
</div>
</div>
</body>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
</html>