Answers for "html 5 starter boilerplate"

1

html5 boilerplate

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<title>HTML5 boilerplate – all you really need…</title>
	<link rel="stylesheet" href="css/style.css">
	<!--[if IE]>
		<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
	<![endif]-->
</head>

<body id="home">

	<h1>HTML5 boilerplate</h1>

</body>
</html>
Posted by: Guest on June-04-2020
0

html 5 boilerplate

<!doctype html>

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

  <title>HTML5 Boilerplate</title>
  <meta name="description" content="A simple HTML5 Boilerplate Template for new projects.">
  <meta name="author" content="Pixover Lab">

  <meta property="og:title" content="HTML5 Boilerplate">
  <meta property="og:type" content="website">
  <meta property="og:url" content="https://www.pixoverlab.com/">
  <meta property="og:description" content="A simple HTML5 Boilerplate Template for new projects.">
  <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>
Posted by: Guest on July-25-2021

Browse Popular Code Answers by Language