1<!doctype html>
2<html lang="en">
3<head>
4 <meta charset="utf-8">
5 <title>Page Title Goes Here</title>
6 <meta name="description" content="Description Goes Here">
7 <link rel="stylesheet" href="style.css">
8</head>
9<body>
10 // if scripts is required add:
11 <script src="js/scripts.js"></script>
12</body>
13</html>
1<!DOCTYPE html>
2<html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <title>YOUR TITLE HERE!</title>
6 <link href="filename.css" rel="stylesheet">
7 </head>
8 <body>
9 <!-- YOUR CODE HERE! -->
10 <script src="filename.js"></script>
11 </body>
12</html>
1<!DOCTYPE>
2<html>
3 <head>
4 <title>Title</title>
5
6 <meta charset="UTF-8">
7 <meta name="viewport" content="width=device-width, initial-scale=1">
8 <link rel="stylesheet" href="style.css">
9 </head>
10
11 <body>
12
13 </body>
14</html>
1Basic Html Template:
2<html>
3 <head>
4 <title>
5 /* document title here */
6 </title>
7 /* document meta information and external file include written here */
8 </head>
9 <body>
10 /* document body goes here */
11 </body>
12</html>
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>Your title</title>
7</head>
8<body>
9 <!--Your body-->
10
11</body>
12</html>
13
14<!--------------------Generated in VSCode with shortcut !-------------------->