1<!DOCTYPE html>
2<html lang="en">
3 <head>
4 <meta charset="UTF-8" />
5 <meta http-equiv="X-UA-Compatible" content="IE=edge" />
6 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7 <title>Here is site title</title>
8 </head>
9 <body>
10 <h1>Hello World!</h1>
11 </body>
12</html>
1Idk if this works in other editors but in VScode, type ! tab and it should automatically paste in all the starting info
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></title>
7</head>
8<body>
9
10</body>
11</html>
1HTML5 is the 5th version of HTML and it also is a markup language.
2What is coded in HTML shows up on screen
1Hypertext Markup Language is the standard markup language for documents
2designed to be displayed in a web browser.
3
4It can be assisted by technologies such as Cascading Style Sheets and
5scripting languages such as JavaScript.