Basic HTML document

From Library
Jump to navigation Jump to search
See also: HTML and Help:HTML

Sample markup code

<nowiki>
<!doctype html>

<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">

  <title>Links of the day</title>
  <meta name="description" content="List of URLs to archive for future reference.">
  <meta name="author" content="A typewriter."

  <meta property="og:title" content="Links of the day">
  <meta property="og:type" content="website">
  <meta property="og:url" content="https://library.jimgrisham.com/Basic_HTML_document">
  <meta property="og:description" content="List of URLs to archive for future reference.">
  <!-- <meta property="og:image" content="image.png"> -->

  <!--
  <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="stylesheet" href="css/styles.css?v=1.0">
  -->

</head>

<body>
  <!-- your content here... -->
  <!--<script src="js/scripts.js"></script>-->
</body>
</html>
</nowiki>

References