-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Hello World</title>
<link rel="manifest" href="./manifest.json" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="./images/hello-icon-152.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="white" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="Hello World" />
<meta
name="msapplication-TileImage"
content="./images/hello-icon-144.png"
/>
<meta name="msapplication-TileColor" content="#FFFFFF" />
</head>
<body class="fullscreen">
<div class="container">
<h1 class="title">Hello World!</h1>
<form>
<input type="text" name="message" placeholder="message goes here" />
<button type="submit">Send</button>
</form>
<ul></ul>
</div>
<script src="./js/main.js"></script>
</body>
</html>