17 lines
616 B
HTML
17 lines
616 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<meta name="description" content="A simple tool for counting words and characters">
|
||
|
<title>Scratchpad</title>
|
||
|
<link rel="stylesheet" href="style.css">
|
||
|
<link rel="icon" href="icon.svg" type="image/svg+xml">
|
||
|
</head>
|
||
|
<body>
|
||
|
<textarea id="input" autofocus placeholder="Write something! Text is auto-saved."></textarea>
|
||
|
<div id="status"></div>
|
||
|
<script src="script.js"></script>
|
||
|
</body>
|
||
|
</html>
|