Introduction
Welcome to Multimedia and Webpage Design!!!
In this WebQuest you will learn internet lingo, code webpages, make aesthetics, and work within CSS and (X)HTML.

Task
Learn About HTML!!!
- http://www.w3schools.com/html/html5_intro.asp
- What does HTML, HTTP, URL, and IP stand for?
- What is the difference between an absolute and relative link?
- What does W3C stand for?
Properties of (X)HTML
- http://www.w3schools.com/html/default.asp
- How do you change font size?
- Look up how to code and create lists
- What are the 4 (X)HTML tag links?
- How do you create a document header?
Evaluation
Example of a Coded Webpage:
<DOCTYPE html>
<html>
<head>
<meta charset=”UTF-8”>
<title>Title of the document</title>
</head>
<body>
Content of the document……
</body>
</html>