-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy paththings-to-read.html
170 lines (156 loc) · 6.46 KB
/
things-to-read.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Reading Materials</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Reset CSS -->
<link rel="stylesheet" type="text/css" media="screen" href="./assets/css/reset.css" />
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<!-- Import Logo Font -->
<link href="https://fonts.googleapis.com/css?family=Caveat" rel="stylesheet">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-rc.2/css/materialize.min.css">
<!-- Logo Font -->
<link href="https://fonts.googleapis.com/css?family=Caveat" rel="stylesheet">
<!-- Styles CSS -->
<link rel="stylesheet" type="text/css" media="screen" href="./assets/css/styles.css" />
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<nav>
<div class="nav-wrapper">
<div class="container">
<a class="brand-logo font-caveat text-darken-2 bold mb-0">Pu ReVu</a>
<a href="#" data-target="side-pu" class="sidenav-trigger">
<i class="material-icons">menu</i>
</a>
<ul class="right hide-on-med-and-down">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="write-review.html">Write Review</a>
</li>
<li>
<a href="read-reviews.html">Read Reviews</a>
</li>
<li class="active">
<a href="things-to-read.html">Reading Materials
<i class="material-icons left">import_contacts</i>
</a>
</li>
</ul>
</div>
</div>
</nav>
<ul class="sidenav" id="side-pu">
<div class="background">
<img src="assets/images/logo_blue_smaller.jpg">
</div>
<li>
<a href="index.html">
<i class="material-icons">home</i>Home</a>
</li>
<li>
<a href="write-review.html">
<i class="material-icons">rate_review</i>Write Review</a>
</li>
<li>
<a href="read-reviews.html">
<i class="material-icons">library_books</i>Read Reviews</a>
</li>
<li>
<a href="things-to-read.html">
<i class="material-icons">import_contacts</i>Reading Materials</a>
</li>
</ul>
<main>
<div class="container">
<h1 class="center-align font-caveat blue-text text-darken-2 bold mb-0">Post ReVu Reading Materials</h1>
<!-- First Row -->
<div class="row">
<!-- Top Three Most Popular Daily Articles -->
<div class="col s12 m6">
<div class="card-panel">
<h5>Get the Top Three Most Popular Articles from The New York Times by Topic!</h5>
<div class="input-field">
<select id="topic-select">
<option value="" disabled selected>Choose your topic</option>
<option value="Arts">Arts</option>
<option value="Books">Books</option>
<option value="Food">Food</option>
<option value="Movies">Movies</option>
<option value="Sports">Sports</option>
</select>
</div>
<div id="top-three"></div>
</div>
</div>
<!-- ^^^Top Three Most Popular Daily Articles^^^ -->
<!-- Dad Jokes -->
<div class="col s12 m6">
<div class="card-panel">
<h5>Random Dad Joke Generator!</h5>
<button id="dad-button" class="btn waves-effect waves-light" type="submit" name="action">Dad Button!
<i class="material-icons right">autorenew</i>
</button>
<br>
<br>
<h6 id="dad-joke"></h6>
</div>
</div>
<!-- ^^^Dad Jokes^^^ -->
</div>
<!-- ^^^First Row^^^ -->
<!-- Second Row -->
<div class="row">
<!-- Weather -->
<div class="col s12 m6">
<div class="card-panel">
<h5>Your Daily Forcast!
<i class="material-icons">cloud_queue</i>
</h5>
<br>
<p id="weather-type">
<b>Forecast:</b>
</p>
<br>
<p id="temp">
<b>Temperature:</b>
</p>
<br>
<p id="wind">
<b>Wind Speed:</b>
</p>
</div>
</div>
<!-- ^^^Weather^^^ -->
</div>
<!-- ^^^Second Row^^^ -->
</div>
</main>
<footer class="page-footer">
<div class="footer-copyright">
<div class="container grey-text text-lighten-5 center">
Copyright © 2018
</div>
</div>
</footer>
<!-- Second Row -->
<!-- jQuery CDN -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<!-- Firebase CDN -->
<script src="https://www.gstatic.com/firebasejs/5.3.0/firebase.js"></script>
<!-- Scripts -->
<script src="assets/javascript/zip.js"></script>
<script src="assets/javascript/scripts.js"></script>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-rc.2/js/materialize.min.js"></script>
</body>
</html>