HTML Flashcards
A website is comprised of multiple ____ that form together to create functionality, style, and structure
Tags
What does the tag do?
Tells browser the type of document
What does the tag do?
Tells browser that I’m about to make a website and everything in between goes in
What is the head of the website?
All the keywords, background functionality. Technical stuff
What is the body of the website?
Pictures, things you see. Cool stuff
What does HTML stand for?
Hyper Text Markup Language
Why is index when saving html files important?
index indicates the homepage
XTML is white ____
XTML is white space insensitive
What is the tag for a paragraph?
<p> </p>
What is the tag for a line break?
<br></br>
Anytime you have a single tag, what is the syntax?
Note: Forward slash after keyword with a space
What is a horizontal rule and how do you code it?
A horizontal line, like a separator. <hr>
How do you bold?
<strong></strong>
How do you do italics?
<em></em>
Note: em stands for emphasize
How do you make comments in your coding for html?