Answers for "html 5 template"

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
0

html 5 code template

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Your Title</title>
  <meta name="description" content="Your description">
  <meta name="author" content="You">
  <link rel="stylesheet" href="css/style.css">
</head>
<body>
  <script src="js/script.js"></script>
</body>
</html>
Posted by: Guest on January-15-2021

Browse Popular Code Answers by Language