generated from koddsson/web-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
24 lines (20 loc) · 873 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>My app!</title>
<!-- https://evilmartians.com/chronicles/how-to-favicon-in-2021-six-files-that-fit-most-needs -->
<link rel="icon" href="/public/favicon.ico" sizes="any"><!-- 32×32 -->
<link rel="apple-touch-icon" href="/public/apple-touch-icon.png"><!-- 180×180 -->
<link rel="manifest" href="/public/manifest.webmanifest">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="./dist/index.css" />
</head>
<body>
<div style="position: relative;">
<label for="input" hidden>Your text</label>
<textarea id="input" placeholder="Write some text here!"></textarea>
</div>
<button invoketarget="input" invokeaction="toggleFullScreen">Fullscreen!</button>
<script async type="module" src="./src/js/index.ts"></script>
</body>
</html>