1/36
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
Where do you add the code to add the title (the tab at the top) into your HTML page?
<title> </title>
<h1> and <p> are examples of what?
tags
What is the full intro tag to an HTML document?
<!DOCTYPE HTML>
tag for adding an image
<img src=" " alt=" ">
What symbols indicate that text is a comment and not actual code?
<!-- -->
All code that will show up goes between these tags
<body> </body>
Which symbol indicates a closing tag in HTML?
/
numbered list
<ol> </ol>
bulleted list
<ul> </ul>
list item
<li> </li>
What's the difference between the headings h1 - h6?
the lower the number the bigger the heading
What does rgb stand for?
red, green, blue
What's the highest value of an rgb number?
255
add a hyperlink to your site
<a href="www.url.com"> My link </a>
What's the relationship between HTML and CSS?
HTML adds the content and structure. CSS adds the style.
The container for all HTML markup
<html></html>
Contains the information about the webpage. Does not show in the webpages.
<head></head>
The text to display on the browser tab.
<title></title>
The container for the content that will be displayed on the webpage.
<body> </body>
The biggest heading.
<h1></h1>
A subheading, the second biggest
<h2></h2>
A paragraph.
<p></p>
Bold text.
<b></b>
Italic or emphasized text.
<i> </i>
Hyperlinked text.
<a href="https://www.google.com">a link to Google</a>
A single bullet in a list.
<li></li>
A container for a bullet-point list.
<ul></ul>
A container for a numbered list.
<ol> </ol>
Creates a table
<table></table>
table row
<tr></tr>
Defines a cell in a table.
<td></td>
Defines a header cell in a table
<th></th>
<a href = "www.killiingit.com">
What is the attribute?
href
<a href = "www.killiingit.com">
What is the element?
a
<a href = "www.killiingit.com">
What is the tag?
<a></a>
<a href = "www.killiingit.com">
What is the value?
These modify properties of an HTML tag
attributes