WordPress / 2020年版 企業サイトを作る / 開発 / 020 トップページ HTMLでページを作る

WordPress / 2020年版 企業サイトを作る / 開発 / 020 トップページ HTMLでページを作る

トップページのデザインと内容ができあがったのでこれを HTML で実装する。

HTML / ページの雛形 このへんの知識を使って作る。

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
        <title>ほげほげのトップページ</title>
        <meta name="description" content="説明文" />
        <!-- 一部のブラウザで電話番号っぽいところが自動リンクになることを抑止 -->
        <meta name="format-detection" content="telephone=no" />
        <link href="favicon.ico" rel="shortcut icon" />
        <link rel="stylesheet" type="text/css" href="top.css" />
        <script>
            document.addEventListener("DOMContentLoaded", function(e){
            });
        </script>
    </head>
    <body>
        <header>this is header.</header>
        <div class="content">
            <section>
                <h1>トップページ</h1>
                <p>
                    ここにテキストが入ります。
                    ここにテキストが入ります。
                    ここにテキストが入ります。
                    ここにテキストが入ります。
                    ここにテキストが入ります。
                    ここにテキストが入ります。
                </p>
            </section>
        </div>
        <footer>this is footer.</footer>
    </body>
</html>
wordpress/create_company_site_2020/dev/020_top_page_make_html.txt · 最終更新: 2021-11-25 23:04 by ore