Skip to content

HTML

HTML基本構成

HTML5 Boilerplate
The web's most popular front-end template
Initializr
HTML5 テンプレートジェネレーター

Markup

HTML4.01のマークアップ

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>タイトル</title>
<style type="text/css">/* CSS */</style>
<script type="text/javascript">/* JavaScriptコード */</script>
</head>
<body>
...
</body>
</html>

HTML5のマークアップ

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>タイトル</title>
<style>/* CSS */</style>
<script>/* JavaScriptコード */</script>
</head>
<body>
...
</body>
</html>

Favicon

Tips

HTML Tidy

Meta tags

schema.org

スキーマとは、ウェブマスターがページをマークアップすることによって大手検索プロバイダーに認識されやすくなるHTMLタグです。 Bing、Google、Yahoo! などの検索エンジンサイトはこのマークアップを通してより質の高い検索結果を出すことができ、またユーザは探したいページを簡単に見つけられるようになります。

OGP