<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Here is site title</title>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- ADD CSS HERE -->
<title>Hello, world!</title>
</head>
<body>
<h1>Hello, world!</h1>
<!-- ADD JAVASCRIPT HERE-->
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8">
<title>...</title>
</head>
<body>
<header>...</header>
<nav>...</nav>
<article>
<section>
...
</section>
</article>
<aside>...</aside>
<footer>...</footer>
</body>
</html>
Idk if this works in other editors but in VScode, type ! tab and it should automatically paste in all the starting info
HTML5 is the 5th version of HTML and it also is a markup language.
What is coded in HTML shows up on screen
<img src="/demo.jpg" alt="description" height="48" width="100" />
<a href="mailto:me@ruwix.com?Subject=Hi%20mate" target="_top">Send Mail</a>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>