技術メモ


HTML5について

WHATWGとは

HTML Living Standardとは

Webサイトを新規で制作する場合のひな形

    
        <!DOCTYPE html>
        <html lang="ja">
        <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta name="format-detection" content="telephone=no">
        <title>タイトル</title>
        <meta name="description" content="">

        <meta property="og:type" content="">
        <meta property="og:title" content="">
        <meta property="og:description" content="">
        <meta property="og:url" content="">
        <meta property="og:image" content="">

        <link rel="icon" href="/favicon.ico">
        <link rel="icon" href="/favicon.svg" type="image/svg+xml">
        <link rel="apple-touch-icon" href="/apple-touch-icon.png">

        <link rel="canonical" href="" />
        <link rel="stylesheet" href="css/index.css">
        </head>
        <body>
        <h1>Hello World!!</h1>
        <script src="js/index.js"></script>
        </body>
        </html>
    
    

W3CとWHATWGの合意事項は