e7c0b1b812d24caac2c9ac02aebbaee74f5f4a74
Etc/Home.md
| ... | ... | @@ -3,18 +3,20 @@ |
| 3 | 3 | # HTML |
| 4 | 4 | ## 雛形 |
| 5 | 5 | ```html |
| 6 | -<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> |
|
| 6 | +<!DOCTYPE html> |
|
| 7 | 7 | <html lang="ja"> |
| 8 | + |
|
| 8 | 9 | <head> |
| 9 | -<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
|
| 10 | -<meta http-equiv="Content-Script-Type" content="text/javascript"> |
|
| 11 | -<meta http-equiv="Content-Style-Type" content="text/css"> |
|
| 12 | -<link rel="stylesheet" type="text/css" href="http://www.takeash.net/take.css"> |
|
| 13 | -<title>Title</title> |
|
| 10 | + <meta charset="UTF-8"> |
|
| 11 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
| 12 | + <link rel="stylesheet" type="text/css" href="https://www.takeash.net/take.css"> |
|
| 13 | + <title>Title</title> |
|
| 14 | 14 | </head> |
| 15 | + |
|
| 15 | 16 | <body> |
| 16 | -<h1>Title</h1> |
|
| 17 | + <h1>Title</h1> |
|
| 17 | 18 | </body> |
| 19 | + |
|
| 18 | 20 | </html> |
| 19 | 21 | ``` |
| 20 | 22 |