Answers for "html5 template tag"

12

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

HTML5 Template

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link rel="stylesheet" href="add-your-filename-here.css">
        <title>Add your title here</title>
    </head>
    <body>
        <script src="add-your-filename-here.js"></script>
    </body>
</html>
Posted by: Guest on June-29-2021
31

html template

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Page Title Goes Here</title>
  <meta name="description" content="Description Goes Here">
  <link rel="stylesheet" href="style.css">
</head>
<body>
  // if scripts is required add:
  <script src="js/scripts.js"></script>
</body>
</html>
Posted by: Guest on October-31-2020

Browse Popular Code Answers by Language