HTML Flashcards
Markup Language
A programming language used to turn text into images, links, tables, lists, and much more.
HTML
Hyper Text Markup Language;
“Text with links in it”
CSS
Cascading Style Sheets
<!DOCTYPE html>
This tag goes on the first line of the document to tell the browser what type of language to expect.
These tags start and finish your HTML document.
Tags
What you find inside of the symbols < and >.
e.g., , <p></p>, etc.
Nested tags
Tags that function within other tags to modify it.
What are the two parts to the HTML file?
The head and the body;
The Head
;
This contains information about the HTML file, such as the title.
The Body
;
This is where you enter the content of your webpage, such as text, images, links, etc. The content is what is visible on your webpage.
Paragraph
<p></p>
;
Heading Tags
Heading text. There are 6 sizes to choose. <h1></h1> <h2></h2> <h3></h3> <h4></h4> <h5></h5> <h6></h6>
Link
<a>type the text you’d like to display</a>
Images
<img></img>
Notice that you do not need a separate closing tag. The img tag closes itself.
Image as link
You can create a link with an image by nesting an img tag inside of a link tag.
<a><img></img></a>