1<!DOCTYPE html>
2<html>
3  <head>
4    <!-- Required meta tags -->
5    <meta charset="utf-8">
6    <meta name="viewport" content="width=device-width, initial-scale=1">
7
8    <!-- CSS goes here -->
9    <link></link>
10
11    <title>Hello, world!</title>
12  </head>
13  <body>
14    <h1>Hello, world!</h1>
15    <!-- JS goes here -->
16    <script></script>
17  </body>
18</html>
191<html>
2    <head>
3        <title>Hello World</title>
4    </head>
5
6    <body>
7         <h1>Welcome ! </h1>
8         <p>Hello World, We've come here to learn HTML</p>
9    </body>
10</html>1<html>
2<head>
3<title>Page Title</title>
4
5</head>
6<body>
7
8<h1>This is a Heading</h1>
9<p>This is a paragraph.</p>
10
11
12</body>
13</html>
141<!DOCTYPE html>
2<html>
3  <head>
4    <title> title </title>
5    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
6  </head>
7  <body>
8    
9  </body>
10</html>