Assignment 3: Web Technology
Description
All web pages have a similar structure of including head, title, style, script and body sections. Understanding the purpose of each section is essential. HTML contains tags called elements which identify what appears on a page. CSS provides rules for styling the elements on a page.
Task
Create a web page with with an overall heading of Web Technology and 3 sub headings of HTML, CSS and JavaScript. Under each sub heading write a short paragraph for each topic. Modify the styles for the body, main heading, sub headings and paragraphs. Experiment with the various font and color styles.
For this assignment,
Post a screen shot of the web page.
Attach both your files using +Add Files
Questions
1) What is the basic structure of a web page? <!DOCTYPE HTML>
<html>
<head>
<title> </title>
<style>
</style>
</head>
<body>
</body>
</html>
2) When creating a style,
What's the first part you must specify? <style>
What's the second part you must specify? Place you want to style like body{
}
What's the last part you must specify? </style>