This page will be redirected to inside
| Tags | Definition | Example |
|---|---|---|
| <!DOCTYPE html> | Declaration of which type of html is being used | No applicable example |
| <html lang="en"> | Specifies the default language of the webpage | No applicable example |
| <meta charset="UTF-8"> | Tells the browser to use UTF-8 encoding so the webpage displays correctly | No applicable example |
| <title>...</title> | Adds the title to the document |
|
| <style></style> | used to write internal CSS directly inside of html document | Show <style>...</style> that makes this cell background black using id or group |
| <link rel="stylesheet" href="styles.css"> | Tag that points to an external CSS file | this table is controled by a style.css file |
| <link rel="icon" type="image/x-icon" href="favicon.ico"> | Tag that adds a favicon |
|