Answers for "html how to create a template"

32

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

Code answers related to "html how to create a template"

Browse Popular Code Answers by Language