Day 14 of #30DaysOfCode

What I did

Revised HTML

hypertext markup language

‘Meta’ word → think like something that modifies or changes the meaning of Data. like Metaverse change the perspective of how a digital world looks like

content inside <head> </head> is not rendered
<head> <title>I am inside head </title> </head>

https://www.bu.edu/lernet/artemis/years/2020/projects/FinalPresentations/HTML/historyofhtml.html

What is DOCTYPE

Doctype syntax for HTML5 and beyond:

<!DOCTYPE html>

Doctype syntax for strict HTML 4.01:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "<http://www.w3.org/TR/html4/strict.dtd>">

https://www.freecodecamp.org/news/what-is-the-doctype-declaration-in-html/

HTML ignores so many continuous running spaces but counts them as 1 space

HTML looks for all spaces and then accepts one space. And it was made in such a way that the language is readable. If HTML accept all spaces, enter, and tabs, the website will look ugly

Semantic HTML

Semantic → having some meaning

Read about Semantic Tags and avoid deprecated HTML tags like font, marquee, center

We include special characters with HTML symbols

https://www.w3schools.com/html/html_symbols.asp