-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdisplaypage.html
More file actions
36 lines (28 loc) · 915 Bytes
/
displaypage.html
File metadata and controls
36 lines (28 loc) · 915 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Mini Google</title>
<link rel="stylesheet" href="body.css">
<script defer src="client.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link href="https://unpkg.com/nes.css/css/nes.css" rel="stylesheet" />
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
</head>
<body>
<section class="container">
<header class="item-a">Google</header>
<nav class="item-c">
<a href="">HOME</a>
<a href="">CAST</a>
<a href="">MAPS</a>
</nav>
<div class="results item-b">
<script>
window.addEventListener('load', function () {
displayData()
})
</script>
</div>
</section>
</body>
</html>