-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·25 lines (23 loc) · 948 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
25
<!DOCTYPE html>
<html lang="en" manifest="manifest.appcache">
<head>
<meta charset="UTF-8">
<title>Welcome to Type!</title>
<meta name="description" content="A clear and uncluttered writing environment that saves as you type.">
<link rel="stylesheet" href="style.css">
<meta name="apple-mobile-web-app-title" content="Type">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="icon" href="favicon.png">
<!--[if IE]><link rel="shortcut icon" href="favicon.ico"><![endif]-->
<meta name="msapplication-TileColor" content="#F7F7F7">
<meta name="msapplication-TileImage" content="tile-icon.png">
</head>
<body>
<textarea id="type" class="light" autofocus>Welcome to Type!
A clear and uncluttered writing environment that saves as you type.
Just write...</textarea>
<script src="script.js"></script>
<script src="ga.js"></script>
</body>
</html>