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>