HTML Flashcards
What does HTML stand for?
HyperText Markup Language
Who is making the Web standards?
The World Wide Web Consortium
What makes webpages pretty? That’s CSS? Which is?
Cascading Style Sheets
Type this on the first line. This line will define the page as html5.
!DOCTYPE html
Always put this on the second line? This starts the html file.
html
Always put this on the last line. This stops the html file.
/html
Things inside these angle brackets < > are called what?
tags
Tags nearly always come in pairs: an _______ tag and a _________tag.
opening closing
The ____ contains information about your HTML file, like its title.
head
The ____ is where you put your content, such as text, images, and links.
body
In HTML, the characters < and > are known as ______ brackets.
angle
This represents an opening or closing tag? /html
closing tag
Choose the correct HTML element for the largest heading:
h1
h2
h3
h6
#
h1
What is the correct HTML for adding a background color?
What is the correct HTML for creating a hyperlink?
a href=”http://www.w3schools.com” W3Schools /a