HTML stands for...
Hyper Text Markup Language
Show me, on the board, what a tag looks like
< >
2007
Show me what a title element looks like
<title> My home page </title>
Show me how to start a paragraph
<p>
There are 3 required tags, what are they
<html>
<head>
<body>
Explain a Line break and show what it looks like
line 1 <br/> ine 2
Show on the board how to make text italic
<em>
True or false:
The picture for your webpage does NOT have to be in the same folder as the web page
FALSE
Hex codes are the name for colors in HTML
What is a comment?
It explains what your code does, who wrote it, or when it was written
Explain an attribute and show an example
Extra bits of info inside a tag
Example: src="name pic" />
2020, 1988, 1981, 1965, 1963, 1959, 1955
What is Megan Thee Stallion's real name?
Megan Javon Ruth Pete
True or false:
When creating an email link, you need to include "mailto"
TRUE
Show how to write a comment.
<!-- insert comment here -->
What is the "formula" to put a picture on your page?
<img src="name of pic.extension" />
<img src="me.jpg" width="25%"/>
Show on the board how to change the background color of a web page
<body bgcolor="xxxxx">
Show the difference between linking YOUR pages together and linking a different website
Your page: <a herf="page.2.html"> click here </a>
Diff. Page: <a herf="http://www.google.com"> click here </a>
Ordered: <ol>
Unordered: <ul>