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>
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>
3<body>
4
5<h1>My First Heading</h1>
6<p>My first paragraph.</p>
7
8</body>
9</html>
1<!doctype html>
2<!--[if IE 8]><html lang="pt-br" class="no-js ie8 oldie"><![endif]-->
3<!--[if IE 9]><html lang="pt-br" class="no-js ie9"><![endif]-->
4<!--[if gt IE 9]><!-->
5<html lang="pt-br" class="no-js">
6<!--<![endif]-->
7<head>
8 <base href="">
9 <meta charset="utf-8"/>
10 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
11 <meta http-equiv="X-UA-Compatible" content="IE=edge">
12 <meta name="msapplication-tap-highlight" content="no">
13 <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0"/>
14 <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/>
15 <meta name="apple-mobile-web-app-capable" content="yes"/>
16 <meta name="theme-color" content="#111111" />
17 <meta name="description" content=""/>
18 <title></title>
19 <link rel="author" href="humans.txt">
20 <link rel="manifest" href="manifest.json" />
21 <link rel="apple-touch-icon" sizes="114x114" href="apple-touch-icon-114x114-precomposed.png">
22 <link rel="apple-touch-icon" sizes="72x72" href="apple-touch-icon-72x72-precomposed.png">
23 <link rel="apple-touch-icon" sizes="57x57" href="apple-touch-icon-57x57-precomposed.png">
24 <link rel="apple-touch-icon" sizes="57x57" href="apple-touch-icon.png">
25 <link rel="shortcut icon" sizes="16x16" href="favicon.ico">
26 <link rel="stylesheet" media="all" href="styles/index.css">
27</head>
28<body>
29 <!-- fallback -->
30 <noscript>You need to enable JavaScript to run this app.</noscript>
31
32 <!-- app -->
33 <main id="root" role="main"></main>
34
35 <!-- libraries - scripts at the bottom for fast page loading -->
36 <script src="scripts/index.js"></script>
37</body>
38</html>
39
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2 "https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">