-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhowto-html
executable file
·37 lines (32 loc) · 887 Bytes
/
howto-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
36
37
#!/bin/sh
set -e
set -u
printf '\033[33m
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Example</title>
<link rel="icon" type="image/png" href="./favicon.png" sizes="32x32">
<link rel="icon" type="image/png" href="./favicon-48x48.png" sizes="48x48">
<link rel="icon" type="image/png" href="./favicon-64x64.png" sizes="64x64">
<link rel="stylesheet" href="./mvp.css">
<style>
fieldset {
border-style: none;
margin: 0;
padding: 0;
}
fieldset label,
fieldset button {
display: inline-block;
}
</style>
<script src="./lib.js"></script>
</head>
<body>
<script src="./app.js"></script>
</body>
</html>
\033[0m'