Unit 3 - Itws 01
Unit 3 - Itws 01
BUILD A WEBSITE
WITH HTML5
UNIT TOPICS
01 02 03
1. 2. 3
define semantic and use basic responsive create web pages
non-semantic design techniques, that utilize ordered,
elements in HTML5 and such as viewport unordered, and
provide examples of settings and media description lists to
each. queries, to create a present information
webpage that adapts effectively; and
to different screen
sizes;
Design for multiplatform
display with responsive
design
What is a Cascading Style Sheet?
Example:
<ul style = “list-style: square inside url(‘image.jpg’)”>
Description Lists
• HTML also supports description lists.
• A description list is a list of terms, with a description of each
term.
• The <dl> and </dl> tags define the description list.
• The <dt> and </dt> tags define the term (name).
• The <dd> and </dd> tags describe each term.
Output
LABORATORY EXERCISE 3
Instructions
• Create a new HTML file and save it as Laboratory3.html
• The title should be Laboratory 3.
• Create a <h1> heading that will display “Types of Websites”
• Create another <h1> heading that will display “Research
Chapters”
• Both headings should be written using “Calibri”.
• Using unordered and ordered lists, create a web page that
will display the output given next slide.
• All list items should be written using “Georgia”.
OUTPUT
LABORATORY EXERCISE 4
Instructions
• Create a new HTML file and save it as Laboratory4.html
• The title should be Laboratory 4
• Create a <h1> heading that will display Chapter Definitions
• The heading should be centered in the screen and should be
colored “MediumSeaGreen”.
• All description terms should be colored “Tomato”.
• Using description lists, create a web page that will display the
output given next slide.
OUTPUT
Semantics vs Non-
semantics Elements
Semantics Elements
Semantic elements are HTML tags that carry specific
meanings about the content they enclose, helping both
developers and search engines understand the structure of
a web page.