diff options
author | Hsieh Chin Fan <pham@topo.tw> | 2024-06-26 00:14:19 +0800 |
---|---|---|
committer | Hsieh Chin Fan <pham@topo.tw> | 2024-06-26 00:14:19 +0800 |
commit | d415bbb33a1c2a3f9a2492668b57c4db0098ef1d (patch) | |
tree | ba2f9ac78a88603bd6183e2c0c313ac15329c3e4 /snippets/html | |
parent | 59de29d5164d245dda1608f5e14cf4e1c981ad3e (diff) |
Update
Diffstat (limited to 'snippets/html')
-rw-r--r-- | snippets/html/details | 2 | ||||
-rw-r--r-- | snippets/html/html_with_basic_head | 21 |
2 files changed, 0 insertions, 23 deletions
diff --git a/snippets/html/details b/snippets/html/details deleted file mode 100644 index 26ecaa6..0000000 --- a/snippets/html/details +++ /dev/null | |||
@@ -1,2 +0,0 @@ | |||
1 | <details><summary>TITLE</summary> | ||
2 | </details> | ||
diff --git a/snippets/html/html_with_basic_head b/snippets/html/html_with_basic_head deleted file mode 100644 index 219bae2..0000000 --- a/snippets/html/html_with_basic_head +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
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> | ||