UTF-8/日本語環境時
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>タイトル</title> </head> <body> <h1>見出し</h1> <p>段落</p> </body> </html>
body要素内のh1とpは必須ではないけどあった方が良いと思われます。
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>タイトル</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" type="text/css" href="スタイルシートのファイル名"> <meta name="description" content="ページの概要"> <meta name="keywords" content="キーワード1,キーワード2,キーワード3"> <meta name="format-detection" content="telephone=no,address=no,email=no"> </head> <body> <h1>見出し</h1> <p>段落</p> </body> </html>