| Tag |
Definition |
Examples |
| <!DOCTYPE html> |
Information to the browser about what type of document it is |
*no examples |
| <html lang="en"> |
Sets the primary language of the browser, it helps the google translator trasnlate the whole page |
<html lang="en"> or <html lang="fr"> |
| <meta charset="UTF-8"> |
it sets the characters that the browser uses |
*no examples |
| <title>...</title> |
Sets the title/name of the brower in the litte tab part |
 |
| <style>...</style> |
How you edit the color, size, and many other factors of the page. |
Look! The background is black using internal CSS and class attribute. |
| <link rel="stylesheet" href="style.css"> |
Tag that points to the External CSS of the page. |
The homepage and this page point to a common style.css file that controls the look of these pages, it is used like this so that these two pages have the same style and doesn't crowd the Internal CSS of both pages. |
| <link rel="icon" type="image/x-icon" href="favicon.ico"> |
Line that gives the page a favicon, a little symbol in the title |
 |