Saturday, February 20, 2021

html dictionary:basic html templateds

Keywords:html,html page,html learn,html blank page,basic html template,html template page,html page



<!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>

No comments:

Post a Comment