Answers for "html5 default template"

11

default html template

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>My Page Title</title>
  <meta name="description" content="My Page Description">
  <link rel="stylesheet" href="css/styles.css?v=1.0">
</head>
<body>
  <script src="js/scripts.js"></script>
</body>
</html>
Posted by: Guest on February-29-2020
2

default html template

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>My Page Title</title>
  <meta name="description" content="My Page Description">
  <link rel="stylesheet" href="css/styles.css?v=1.0">
</head>
<body>
  <script src="js/scripts.js"></script>
</body>
Posted by: Guest on December-26-2020
0

html5 default template

<!doctype html>

<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="description" content="The HTML5 Herald">
  <meta name="author" content="SitePoint">
  <title>The HTML5 Herald</title>
  
  <link rel="stylesheet" href="css/styles.css?v=1.0">
</head>
<body>


  <script src="js/scripts.js"></script>
</body>
</html>
Posted by: Guest on March-31-2021

Browse Popular Code Answers by Language