-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
73 lines (66 loc) · 2.78 KB
/
search.php
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
<?php
$news_url = file_get_contents("data.json");
$hackernewss = json_decode($news_url, true);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Hacker News - Tech Related Latest News</title>
<!-- CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap" rel="stylesheet">
<link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection" />
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection" />
</head>
<body>
<nav class="teal" role="navigation">
<div class="nav-wrapper container">
<a id="logo-container" href="index.php" class="brand-logo white-text">Hacker News</a>
<ul class="right hide-on-med-and-down">
<li><a href="search.php"> <i class="material-icons white-text">search</i></a></li>
</ul>
<ul id="nav-mobile" class="sidenav">
<li><a href="#">
<h4>Hacker News</h4>
</a></li>
<li><a href="#">All News</a></li>
<li><a href="#">Latest News</a></li>
</ul>
<a href="#" data-target="nav-mobile" class="sidenav-trigger"><i class="material-icons white-text">menu</i></a>
</div>
</nav>
<div class="container my-search">
<div class="row">
<h4 class="center">Search Here!</h4>
<div class="col s12">
<div class="row">
<div class="input-field col s12">
<i class="material-icons prefix">search</i>
<input type="text" id="autocomplete-input" class="autocomplete">
<label for="autocomplete-input">Search here!</label>
</div>
</div>
</div>
</div>
</div>
<footer class="page-footer white">
<div class="footer-copyright">
<div class="container">
Made with ❤️ by <a class="indigo-text bold" href="http://www.facebook.com/itrafsanjani">Md. Rafsan Jani</a>
</div>
</div>
</footer>
<!-- Scripts-->
<script src="js/jquery-2.1.1.min.js"></script>
<script src="js/materialize.js"></script>
<script src="js/init.js"></script>
</body>
<script>
document.addEventListener('DOMContentLoaded', function() {
var elems = document.querySelectorAll('.autocomplete');
var instances = M.Autocomplete.init(elems, options);
});
</script>
</html>