HTML stands for
Hyper Text Markup Language
CSS Stands for
Cascading Style Sheets
What is the element for a paragraph
<p>
attached to the image element
src
What element is used for an ordered list and an unordered list
<ol> / <ul>
What version of HTML are we using
HTML5
Inline style puts the style where
In specific elements
How many heading elements are there
6
What is the attribute formula
___="___"
What do you need to put into the opening audio element to add a control box to your audio file
<audio controls>
A piece of a website, marked by a start tag and often closed with an end tag is an HTML
Element
internal style puts the style where?
In the head section with a <style> element
what element allows images
<img>
What is the attribute to help link things
href
What element is used to add a video?
<iframe>
<>
Tags
an External style sheet puts the style where
On its own sheet then linked to the original sheet using a <link> element
How do you put in an audio file
<audio>
What attribute would you use to add a radio button onto your form
type
What is the full code to link your external style sheet
<link rel="Stylesheet" href="filename.css">
<html>
What is a CSS Selector
A CSS rule that defines which HTML elements should be applied to the style
List all the elements for a table
<table> <tr> <td> <th>
give all 4 attributes we have used to add an image
src / alt / height / width
What is the code to link other html files to your home file
<a href="filename.html"> name of link </a>