Basic HTML
Author: Naota
Here is some basic html! I will rewrite this later.
Basic Tags:
<html> – This tag specifies that you are beginning an html web page and should be at the top of every web page you create.
</html> - This tag specifies the end of the web page and should be at the bottom of every web page you create.
<head> </head> – Stars and ends the head of an html document. The head contains information like the title and meta data for a web page.
<title>Title of page</title> – This specifies the title caption displayed for webpage on your browser and is also read by search engines.
<body> </body> Starts and ends the body of an html document.
Note: See how the tags are identical aside from the ” / ” infront of the close tag? Almost all tags are closed by just rewriting the tag and putting a / before the start.
Font Changes:
Want to bold some text? <b>bolded words here</b>
Want to italicize? <i>Italicized words here</i>
Underline? <u>Underlined words here</u>
That is all for now.
