-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (30 loc) · 1 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<title>Test Page</title>
<link rel='shortcut icon' href='./assets/icons/icon-128x128.png'>
<!-- PWA -->
<link rel='manifest' href="/manifest.json">
<link rel='apple-touch-icon' href="/assets/icons/icon-96x96.png">
<link rel='stylesheet' href="./styles.css">
<meta name="apple-mobile-web-app-status-bar" content="white">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="theme-color" content="white">
<!-- /PWA -->
</head>
<body>
<h1>Test Page</h1>
<form id='searchForm'>
<input type='text' placeholder='Search' id='searchInput'><br>
<input type='submit' value='submit'>
</form>
<div class='result-container'>
<ul id='result'></ul>
</div>
<img src='./assets/icons/icon-512x512.png' alt='logo'>
<script src='js/app.js'></script>
<script src='js/index.js'></script>
</body>
</html>