aboutsummaryrefslogtreecommitdiffhomepage
path: root/snippets/html
diff options
context:
space:
mode:
authorHsieh Chin Fan <pham@topo.tw>2024-06-08 17:06:10 +0800
committerHsieh Chin Fan <pham@topo.tw>2024-06-08 17:06:10 +0800
commit024dd04edc16693545fb916150e6361f0626aad0 (patch)
tree3659d77e27ec2d8ac515aa034e67397928d27c62 /snippets/html
parenta0417c10ed8c5249eea5ba9911ca128dfe5598ca (diff)
Update
Diffstat (limited to 'snippets/html')
-rw-r--r--snippets/html/html_with_basic_head21
1 files changed, 21 insertions, 0 deletions
diff --git a/snippets/html/html_with_basic_head b/snippets/html/html_with_basic_head
new file mode 100644
index 0000000..219bae2
--- /dev/null
+++ b/snippets/html/html_with_basic_head
@@ -0,0 +1,21 @@
1<!DOCTYPE html>
2<html lang="en">
3 <head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <meta http-equiv="X-UA-Compatible" content="ie=edge">
7
8 <title>My Website</title>
9
10 <link rel="stylesheet" href="./style.css">
11 <link rel="icon" href="./favicon.ico" type="image/x-icon">
12
13 <script defer src="index.js"></script>
14 </head>
15 <body>
16 <header></header>
17 <main>
18 <h1>foo</h1>
19 </main>
20 </body>
21</html>