Skip to content

Instantly share code, notes, and snippets.

@LeeDDHH
Last active January 30, 2021 06:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LeeDDHH/a4200a0124c34cddd7498929d0df814d to your computer and use it in GitHub Desktop.
Save LeeDDHH/a4200a0124c34cddd7498929d0df814d to your computer and use it in GitHub Desktop.
HTMLで文書構造を作る時のtips

Document基本ベース

<!DOCTYPE html>
<html lang="ja">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="">
    <title></title>
</head>
<body>
    
</body>
</html>

Document基本ベース2

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>Aqua</title>

<meta name="keywords" content="">
<meta name="description" content="">

<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="format-detection" content="telephone=no">

<link rel="shortcut icon" href="img/favicon.ico">
<link rel="apple-touch-icon" href="img/apple-touch-icon.png">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>

<body>
<header class="header">
<!-- (ヘッダーを記述する) -->
</header>

<main>
<!-- (メインコンテンツを記述する) -->
</main>

<footer class="footer">
<!-- (フッターを記述する) -->
</footer>
</body>
</html>

横並びのグローバルナビゲーション

<nav>
    <ul>
        <li><a href="#">項目1</a></li>
        <li><a href="#">項目2</a></li>
        <li><a href="#">項目3</a></li>
        <li><a href="#">項目4</a></li>
    </ul>
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment