BLOG

忘却録

WEBに関するコーディング、プログラミングなど私的な忘却録として投稿していきます。また、参考サイトも併せて紹介していきます。

index.php

2018.02.03

<!DOCTYPE html>
<html lang="ja">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1,user-scalable=no">
    <meta name="format-detection" content="telephone=no">
    <title>ここにタイトルを記述</title>
    <meta name="description" content="ここにディスクリプションを記述">
    <meta name="Keywords" content="ここにキーワードを記述">
    <meta property="og:title" content="ここにタイトルを記述">
    <meta property="og:type" content="website">
    <meta property="og:description" content="ここにディスクリプションを記述">
    <meta property="og:site_name" content="ここにサイト名(=タイトル)を記述">
    <meta property="og:image" content="/image/og.jpg">
    <link rel="stylesheet" href="ここにファイルパスを記述">
    <?php require_once($_SERVER['DOCUMENT_ROOT'].'ここにファイルパスを記述'); ?>
    <script src="ここにファイルパスを記述"></script>
</head>

<body>
    <header></header>
    <main>
        <article>
            <section>
            </section>
        </article>
    </main>
    <footer></footer>
</body>

</html>