Asignment 3
Back to Home
Last page
| Tag | Definition | Examples |
|---|---|---|
<!DOCTYPE html> |
This is tells the file that this is html | <!DOCTYPE html>(I can't show an example) |
<html lang="en"> |
This sets the base language to english | This page is set to “en” for English. This tag helps websites such as Google Translate know the default language for this page is English. |
<meta charset="UTF-8> |
This tells the website how to read the characters on the page | <meta charset="UTF-8>(I can't show an example) |
<title></title> |
The title is the name at the top of the page |
|
<style> |
This can be used to change the color, font and other things in html | Internal CSS was used to invert color: <style> .invert { background-color: black; color: white; } <style> |
.varible |
This is a varible and can be used for buttons and other things | Last pageThis takes you back to the first page |
<link rel="icon" type="image/x-icon" href="/images/favicon.ico"> |
A favicon is the little image at the top of a website and is stored in outside.html |
|