Last active
July 1, 2024 12:22
-
-
Save ecormaksin/6154670086fb719697d1a1e24a024300 to your computer and use it in GitHub Desktop.
HTMLファイルの最小テンプレート
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ja-JP"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>the simplest HTML template</title> | |
<link href=".css" rel="stylesheet" type="text/css"> | |
<script src="script.js" defer></script> | |
</head> | |
<body> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment