-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
82 lines (65 loc) · 3.71 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Move Planner: Your Moving Companion</title>
<meta name="author" content="Aditya Niloi">
<meta property="fb:app_id" content="496769984026384">
<meta property="og:image" content="http://www.knowledge.info/sites/default/files/images_article4/the-hood.jpg">
<meta property="og:title" content="Move Planner: Plan Your Next Move">
<meta property="og:description" content="Find the latest news and articles on your next neighborhood before you move in.">
<meta property="og:url" content="https://move-planner.herokuapp.com/" />
<!-- <meta property="og:type" content="video.tv_show" /> -->
<meta name="twitter:title" content="Move Planner: Plan Your Next Move">
<meta name="description" content="Enter an address and find out its latest development plus history.">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.1/css/materialize.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lobster|Noto+Serif" rel="stylesheet">
<link rel="apple-touch-icon" sizes="120x120" href="/icon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/icon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/icon/favicon-16x16.png">
<link rel="manifest" href="/icon/manifest.json">
<link rel="mask-icon" href="/icon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="css/responsive.css">
<link rel="stylesheet" href="css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div class="container">
<form id="form-container" class="form-container row">
<div class="field col s12 m4 l4">
<label for="street">Street: </label><input type="text" id="street" value="1520 Sedgwick Avenue">
</div>
<div class="field col s12 m4 l4">
<label for="city">City: </label><input type="text" id="city" value="Bronx NY">
</div>
<div class="button col s12 m4 l4">
<button id="submit-btn" class="waves-effect waves-light btn"><i class="material-icons right">send</i>Submit</button>
</div>
</form>
<!-- <hr> -->
<h2 id="greeting" class="greeting">Where do you want to live?</h2>
<div class="row">
<div class="nytimes-container col l8">
<h3 id="nytimes-header">New York Times Articles</h3>
<ul id="nytimes-articles" class="article-list">What's going on in your new city? Enter an address and hit submit and the NY Times will tell you here!</ul>
</div>
<div class="wikipedia-container col l4">
<h3 id="wikipedia-header">Relevant Wikipedia Links</h3>
<ul id="wikipedia-links">Type in an address above and find relevant Wikipedia articles here!</ul>
</div>
</div>
<div class="footer-copyright">
<div class="container">
<p>Made by <a class="brown-text text-lighten-3" href="https://angel.co/aditya-niloi">Aditya Niloi</a></p>
</div>
</div>
<script src="js/libs/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.1/js/materialize.min.js"></script>
<script src="js/script.js"></script>
</div>
</body>
</html>