Introduction
Multimeida and Web Page Desgin class is about learning how to create web pages and the coding behind it.
What will be hit in this webquest,
What is a Web Page? A Web Page is doc that uses Html's and Tags to display info, through coding.
Theres something called a Web Site, a website is used to link a page, this is called a hyper-link.
What is HTML? HTMl stands for htypertext mark-up language. HTML is a key word to diffined what you are looking for.
What is a Tag? a tag is a line of information that is used to create a part of the webpage or web site. there are two different types of tags, there is starting tags and ending tags.
Task
By the time you have compleated the Web quest you should know how to make a basic Web Page.
This is what you will type into a simple text editor to start making the basic web page.
<!DOCTYPE html>
<html>
<head>
<title>Welcome to the html lounge....</title>
</head>
Process
This is what you will type to make the final product of the web page.
<!DOCTYPE html>
<html>
<head>
<title>Welcome to the html lounge....</title>
</head>
<body style="background-color:black; color:white;">
<h1>Learning HTML 5</h1>
<hr>
<img
src="5html.png">
<h2?What is HTML?</h2>
<p>HTML is the language of web pages. I can create a web page
using a simple text editor.</p>
<h3>:These are 3 web sites that will help me learn HTML</h3>
<ul>
<li><a href="http:// w3schools.com/">w3schools</a></li>
<li><a href="http://htmldog.com/guides/html/beginner/">html
dog</a></li>
<li><a href="http://www.codecademy.com/tracks/htmlcss">code
academy</a></li>
</ul>
<h4>This is heading style 4</h4>
<h5>heading style 5</h5>
<h6>heading style 6</h6>
</body>
After you are do with the typing you will save the document like so...
Basic web pag.html
Evaluation
This is what the link for your webpage should look like and if you have done it right it should look like the Conclusion.
file:///H:/Webpage/Basic%20Web%20page.html
Conclusion
This is what your basic web page should look like after you are done with everything.
Credits
Ashely's basic webpage.
Sabrina Kokes and Ashley Barber.