-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (68 loc) · 3.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Your Moving Companion</title>
<link rel="stylesheet" href="css/style.css">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Tangerine">
<!-- <link href="https://fonts.googleapis.com/css?family=Barrio" rel="stylesheet"> -->
<link href="https://fonts.googleapis.com/css?family=Dancing+Script" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">
<!-- <span class="glyphicon glyphicon-apple" ></span> -->
<i class="fa fa-apple" style="color:#5bdb48" aria-hidden="true"></i>
</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<form class="form-inline" id="form-container" style="display:inline-block;">
<div class="form-group has-feedback">
<label for="street" class="label">Street:</label>
<input type="text" class="form-control" id="street" value="">
<span class="glyphicon glyphicon-search form-control-feedback"></span>
</div>
<div class="form-group has-feedback">
<label for="city" class="label">City:</label>
<input type="text" class="form-control" id="city" value="">
<span class="glyphicon glyphicon-search form-control-feedback"></span>
</div>
<button type="submit" class="btn btn-primary" style="background:black;">Send Query</button>
</form>
<div class="navbar-right" style="margin:15px;">
<i class="fa fa-twitter" style="color:white;margin-right:10px;" aria-hidden="true"></i>
<i class="fa fa-facebook" style="color:white;" aria-hidden="true"></i>
</div>
</div>
</div>
</nav>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<h2 id="greeting" class="greeting font-class">Where do you want to live?</h2>
<div class="nytimes-container col-lg-8 col-md-8 col-sm-12 col-xs-12">
<h3 id="nytimes-header" class="font-class">New York Times Articles</h3>
<ul id="nytimes-articles" class="article-list">
</ul>
</div>
<div class="wikipedia-container col-lg-4 col-md-4 col-sm-12 col-xs-12">
<h3 id="wikipedia-header" class="font-class">Relevant Wikipedia Links</h3>
<ul id="wikipedia-links"></ul>
</div>
</div>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>