A barebone HTML5 index page which contain some common elements and meta tags to start with.
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>TITLE</title> <meta name="description" content="Your description"> <meta name="author" content="Thomas Vanhoutte"> <meta name="viewport" content="width=device-width"> <link rel="stylesheet" href="/css/style.css"> <link rel="canonical" href="https://thomas.vanhoutte.be/miniblog/"> <!-- Facebook --> <meta property="fb:app_id" content="713777305326587" /> <meta property="fb:admins" content="1626522259" /> <!-- Open Graph --> <meta property="og:site_name" content="Title of my page" /> <meta property="og:description" content="Description of my page" /> <meta property="og:type" content="website" /> <meta property="og:image" content="/meta.png" /> <!-- Schema.org --> <meta itemprop="name" content="Title of my page"> <meta itemprop="description" content="Description of my page"> <meta itemprop="image" content="/meta.png"> <!-- Twitter Cards --> <meta property="twitter:card" content="summary"> <meta property="twitter:site" content="@ThomasVanhoutte"> <meta property="twitter:title" content="Title of my page"> <meta property="twitter:description" content="Description of my page"> <meta property="twitter:creator" content="@ThomasVanhoutte"> <meta property="twitter:image" content="/meta.png"> <meta property="twitter:url" content="http://website.be/" /> <meta property="twitter:domain" content="Thomas' Miniblog"> <!-- Google Authorship --> <link rel="author" href="https://plus.google.com/107314571543893931578/posts"/> <!--[if lt IE 9]> <script src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> </head> <body> <h1>Yay, an HTML5 page!</h1> </body> </html>
I am just starting with my first website, so that’s really really helpful! Thank you very much!