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 <meta http-equiv="X-UA-Compatible" content="ie=edge">
7 <title>Document</title>
8</head>
9<body>
10 <h1>HTML Skeleton</h1>
11 <p>Content</p>
12</body>
13</html>
1<!DOCTYPE html> <!-- proper HTML5 doctype -->
2<html lang="en">
3
4<head>
5 <meta charset="utf-8">
6 <title>Basic HTML Skeleton</title>
7 <meta name="author" content="">
8 <meta name="description" content="">
9 <meta name="viewport" content="width=device-width, initial-scale=1">
10
11 <link href="css/normalize.css" rel="stylesheet">
12 <link href="css/style.css" rel="stylesheet">
13</head>
14
15<body>
16 <h1>Basic HTML 5 Skeleton Page</h1>
17 <p>Hello, world!</p>
18
19 <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
20 <script src="js/script.js"></script>
21</body>
22
23</html>
1<!-- VSCode (Emmet) HTML Skeleton -->
2<!DOCTYPE html>
3<html lang="en">
4 <head>
5 <meta charset="UTF-8" />
6 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7 <title>Document</title>
8 </head>
9 <body></body>
10</html>
11
1<! Visual Studio Code (Emmet) HTML Skeleton ––>
2<!DOCTYPE html>
3<html lang="en">
4 <head>
5 <meta charset="UTF-8" />
6 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7 <title>Document</title>
8 </head>
9 <body></body>
10</html>
11
1 <!DOCTYPE html> <!--Tells The Website This Is HTML Code-->
2
3<html> <!-- The HTML Tag (All Your Content Is Between This Tag And The HTML End Tag) -->
4 <head> <!-- The Head Tag -->
5
6 <!-- Here Is The Head -->
7
8 </head> <!-- The Head End Tag -->
9
10 <body> <!-- The Body Tag -->
11
12 <!-- Here Is The Body -->
13
14 </body> <!-- The Body End Tag -->
15</html> <!-- The HTML End Tag (All Your Content Is Between This Tag And The HTML Tag) -->