This is the HTML tag that is the largest heading
<h1>
What symbols are used in CSS that go around the selectors?
Brackets { }
<p> Here is some info
Missing </p>
What symbols do HTML use that go around tags?
Chevrons < >
JS
Javascript
This is the HTML tag for a line break
<br>
Which tag is affected by this code?
p {color: red;}
Paragraph
<title> Reddit <title>
Missing /
Which coding language adds the style to the website?
CSS
UI
User Interface
This is the html tag that contains the entire document
<html>
What does the following code do?
p {text-align: center;}
Centers the paragraph text
<a> Click Here! </a>
Missing the link
Which coding language is the primary coding language of web design? It provides structure and functions to a website.
HTML
HTML
Hypertext Markup Language
This is the HTML tag for a link
<a>
You can use this command inside of an HTML tag to add style, like font size or color.
"style"
<img> source </img>
You don't need a second <img> tag
What coding language is used to design Apps? It also allows us to add dynamic behavior and add special effects to the webpage.
Javascript
CSS
Cascading Style Sheets
What tag would you find this code inside of?
<meta charset="UTF-8">
<head>
What is the purpose of the following HTML code?
<link href="style.css" rel="stylesheet" type="text/css" />
Links the HTML document to the CSS document
What is wrong with the following CSS code?
body {color: red}
Missing a semi-colon ;
What is the most common name used for the default html page shown on a website?
index.html
WWW
World Wide Web