-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (53 loc) · 2.15 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>NewsSearch App</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link href="https://fonts.googleapis.com/css?family=Merriweather+Sans" rel="stylesheet">
<link rel="shortcut icon" type="image/png" href="https://github.com/KBPsystem777/weatherApp/blob/master/public/img/favicon.png?raw=true" />
</head>
<body class="w3-mobile">
<div class="w3-center w3-black w3-large" id="nav-pane">
<div class="w3-row">
<div class="w3-col w3-container w3-black" onclick="backToTop()">
<h1 onclick="backToTop()">NewsSearch</h1>
</div>
</div>
</div>
<div class="w3-container">
<div class="controls">
<form>
<p>
<label for="search">Enter a SINGLE search term: </label>
<input class="search" type="text">
</p>
<p>
<button class="submit w3-black w3-btn">Search</button>
</p>
</form>
</div>
<div class="results">
<nav class="w3-center">
<button class="prev w3-black w3-btn"><< Previous</button>
<button class="next w3-black w3-btn">Next >></button>
</nav>
<div class="w3-center">
<section class="w3-mobile">
</section>
</div>
</div>
<footer class="w3-black w3-mobile w3-container">
<div class="w3-row">
<p><a href="https://github.com/KBPsystem777/NewsSearch">GitHub</a> | <a class="twitter-share-button"
href="https://twitter.com/intent/tweet?text=NewsSearch%20App is great! Check it out here: https://goo.gl/ciBJbv">Twitter</a> |
<a href="https://www.linkedin.com/in/koleenbp">LinkedIn</a> | <a href="https://facebook.com/kbpsystem777">Facebook</a> | <a href="mailto:koleen.bp@outlook.com">Email</a></p>
</div>
</footer>
</div>
<button onclick="topFunction()" id="myBtn" title="Go to Top">Back To Top</button>
<script src="script.js" type="text/javascript"></script>
</body>
</html>