01 The beggining
What is HTML
HTML for HyperText Markup Language is the common langugage used for all the websites nowadays. It used as the skeleton of a web page
A HTML pages strucutres like this :
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ma première page</title>
</head>
<body>
</body>
</html>
The doctype
It used to indicate to the browser that the document have to be interpreted according to the HTML standards.
Made by taholajoux