What HTML stands for
Hyper Text Markup Language
creates an ordered (numbered) list?
<ol>
What CSS stands for
Cascading Style Sheets
symbol used before an ID selector in CSS
#
changes text to bold
<strong>
the visible content of a webpage
<body>
used to create a hyperlink
<a>
purpose of CSS
style and design webpages
symbol used before a class selector in CSS
.
creates a table row
<tr>
creates the largest heading
<h1>
creates an unordered list
<ul>
section where the title goes in on a webpage
<head>
changes the size of text
font-size
<td> in a table stands for
table data
creates a horizontal line
<hr>
symbols used around HTML tags
< >
symbols that go around CSS declarations
{ }
changes the font type
font-family
centers text
text-align
inserts a line break
<br>
What is a hyperlink?
Clickable text or images that take you to another page
code that correctly links an external stylesheet
<link rel="stylesheet" type="text/css" href="style.css">
CSS property that changes the font to italic
font-style
used to create a comment
<!-- comment -->