HTML
Users with very little expert knowledge can use CMS to create web pages.
However web page designers generally create pages in the languaje that they are written in HTML.
- Browsers normally use (Chrome, Firefox, Explorer... etc) to interpret this language.
- HTML: is the language used to build web pages. By convection, files in HTML format use the extension .htm or .html.
We can create a web page by written this code in any text editor and saving it with the correct extension (.html or .htm).
→ TAGS AND ATTRIBUTES
The basic characteristics are:
- HTML is written with tags inside angle brakets (<>).This tags can be opening (e.g. <body>) or closing (e.g. </body>).
- HTML code always starts with the opening tag <html> and ends with the closing tag </html>.
- This image shows a basic document created in HTML. HTML documents have two main parts:
4. Tags are completed by atributes, which are parameters that indicate the properties of behavour of the tag.
5. All HTML elements are composed of two tags (one opening and one closing)

