HTML Flashcards
HTML is made up of?
HTML tags
HTML is made up of?
HTML tags
What is the benefit of syntax highlighting?
Improves the readability and context of my text
What is it called when there are red highlights in my code?
Syntax Error
What is Syntax Highlighting?
A feature that displays text, especially source code, in different colors and fonts according to the category of terms.
HTML is the _____ _____ of the web and it’s the only thing that you have to know in order to make a website.
building block
HTML describes what?
What each part of a website is
What is the html tag for a paragraph?
<p></p>
What is the HTML tag for an image?
HTML tags literally _____ (or mark up) all of your text, images, and content so that your computer knows what each piece of content is and understands how to show it to you in the _____.
Tag
Browser
What is the HTML tag for a headline?
<h1> </h1>
What is the first step in being “tech-fluent?”
Learning HTML
What is HTML’s primary purpose?
To tell my computer what each part of a website is (headline, image, paragraphs, text, etc)
What do I have to do each time I add a piece of content to a website?
Tell my computer what type of content I am adding is.
Is HTML responsible for how content on a web page looks?
No! It just describes what it IS not what it LOOKS like
What symbols are used in an HTML opening tag?
Less Than <
Greater Than >
What extra symbol does a HTML closing tag use?
Forward Slash /
Is it possible to look at ANY online website’s HTML?
YES
Is it possible to look at ANY online website’s HTML?
YES
What is the benefit of syntax highlighting?
Improves the readability and context of my text
What is the ONLY thing I NEED to have in order to make a website?
HTML
What is Syntax Highlighting?
A feature that displays text, especially source code, in different colors and fonts according to the category of terms.
HTML is the _____ _____ of the web and it’s the only thing that you have to know in order to make a website.
building block
How many HTML tags will I use most of the time in all of the 100 that there are?
25 -
for paragraphs, images, links, forms, sections, articles, and footers.
What is the html tag for a paragraph?
<p></p>
What is the HTML tag for an image?
HTML tags literally _____ (or mark up) all of your text, images, and content so that your computer knows what each piece of content is and understands how to show it to you in the _____.
Tag
Browser
What is the HTML tag for a headline?
<h1> </h1>
The <em> tag is used to denote text that should be _____.</em>
emphasized
What is HTML’s primary purpose?
To tell my computer what each part of a website is (headline, image, paragraphs, text, etc)
What is the tag I would use to add a line break in the text without needed to start a new paragraph?
<br></br>
Is HTML responsible for how content on a web page looks?
No! It just describes what it IS not what it LOOKS like
What symbols are used in an HTML opening tag?
Less Than <
Greater Than >
What extra symbol does a HTML closing tag use?
Forward Slash /
HTML tags almost always come in _____.
Pairs
Is it possible to look at ANY online website’s HTML?
YES
How can one look at a website’s HTML?
View the site’s page source
HTML is the _____ _____ of the web.
Building Block
What is the ONLY thing I NEED to have in order to make a website?
HTML
What is the most frequent mistake made by beginning HTML writers?
Forgetting to close the HTML tag.
How many tags are there to learn in HTML?
100
How many HTML tags will I use most of the time in all of the 100 that there are?
25
How many header tags are there?
6
What HTML header number would the MOST important header be designated as?
<h1></h1>
The <strong> tag is meant to denote text that is _____.</strong>
IMPORTANT
Is the text within the <strong> tag always BOLD?</strong>
No
The <em> tag is used to denote text that should be _____.</em>
emphasized
Is the text within the <em> tag always Italicized?</em>
No
What is the tag I would use to add a line break in the text without needed to start a new paragraph?
<br></br>
<b> and <i> HTML tags are _____, while <em> and strong are _____.</em></i></b>
presentational
semantic
What is the HTML character for “em dashes?”
—
What does HTML stand for
Hypertext Markup Language
Who is widely considered the creator of the web?
Tim Berners-Lee
What is the tag I should add to create bolded text?
<strong></strong>
What are the 2 types of lists in HTML?
Ordered
Unordered
What is the HTML tag for an Ordered List?
<ol></ol>
What list (ordered or unordered) would I add when the order of the list MATTERS?
Ordered <ol></ol>
What list type would I use when listing my favorite programming languages in order of how much I love them?
Ordered <ol></ol>
What list type is great for “to do” lists?
Unordered <ul></ul>
What is nested WITHIN a ordered <ol> or unordered </ol><ul> list?</ul>
The line items <li> I want to add
<ul>
<li>My list item</li>
</ul>
<ol>
<li>List Item</li>
<li>List Item</li>
</ol>
</li>
List Item tags go _____ the ordered or unordered lists?
Inside
Use what type of list when the order of the list items do NOT matter?
Unordered List <ul></ul>
The image tag is what’s known as a _____-_____ tag
self-closing
What is a self-closing tag?
Instead of a having a closing HTML tag, they have a forward slash in front of the greater-than symbol or />.
What do Attribute tags provide us with?
more information about the specific HTML tag
What is a Source Attribute or scr=
gives more information about the link to where an image file is stored.
When you want to show an image on your website what must you do first?
Put that image somewhere on the Internet so it can be accessed
What is the EASIST way to show an image on a website?
First, place the image that you want to show in a folder on your web server.
When an image is successfully on the web what must I locate to setup my code correctly?
The image’s location URL
How can I find out a location of an image on the web?
Right click on the image and select “open image in a new tab.”