Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed (UPI) Chapter 1: Foundations of HTML and Web Development!
Instruction
HTML Elements and Tags
An HTML element includes an opening tag, content, and a closing tag. Some elements are "empty" and don't need a closing tag.
-
Elements with Content:
- Each element begins with an opening tag and ends with a closing tag.
<h1>San Joaquin Valley Town Hall</h1>
<p>Here is a list of links:</p>
-
Empty Tags:
- Empty tags, like
<br>
for a line break...
- Empty tags, like