In the programming world we use different cases for different languages and purposes:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>
body {
background:red;
font-size:20px;
}
Go to google.com
Refresh the page, why are the changes gone ?
<!-- this is a remark -->
<!-- container tag -->
<p>This is the paragraph content</p>
<!-- container tag with attribute-->
<p id="para">This is the paragraph content</p>
<!-- self-closing tag -->
<br/>
ul
ol
li
<!-- absolute link -->
<a href="http://www.google.com">Google site</a>
<!-- relative links -->
<a href="index.html">Home</a>
<a href="../secondPage.html">Second page</a>
<a href="pages/thirdPage.html">Third page</a>
<!-- target attribute -->
<a href="pages/thirdPage.html" target="_blank">Third page</a>
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<a href="#history">History of the world</a>
<br/>
Some text here ...
<br/>
<br/>
<h1 id="history">The history of the world</h1>
<!--link to a specific place in a page-->
<a href="https://en.wikipedia.org/wiki/Elton_John#Early_life">
Elton John early life
</a>
</body>
</html>
Anchors can link inside a page also