This page will be redirected to Assignment 3 inside if you click
| <head> Tags | Definition | Example(s) if applicable |
|---|---|---|
| <!DOCTYPE html> | informs the web browser about the version of HTML the page is written in | |
| <meta charset="UTF-8"> | ensures that the browser correctly interprets and displays the characters on the webpage. | |
| <html lang="en"> | Sets page language to english |
This page language is set to english |
| <meta http-equiv="refresh" content="0; url=$URL"> | automatically redirect the user to another page after a specified delay | |
| <title>...</title> | Creates a title for the page |
|
| <style>...</style> | define CSS | Show style backround |
| <link> | define a relationship between the current HTML document and an external resource | |
| <article>…</article> | define a self contained, independent piece of content within a document | |
| <header>…</header> | Groups content like titles, logos, navigation menus, or introductory text | |
| <link rel="icon" type="image/x-icon" href="/images/favicon.ico"> | Adds an icon to the tab of your website |
|