Page 84 - Code Craft Computer-7
P. 84
How to Create:
8 Web Pages using
HTML5 and CSS
Core Concepts
On completion of this chapter you will be able to know:
¨ Revising HTML Tags ¨ Lists
¨ List Properties ¨ Nested List
¨ Description List ¨ Tables
¨ Table Properties
Warm Up #Problem Solving
Write down the structure of creating a webpage in HTML.
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
____________________________________________________________________________
REVISING HTML TAGS
Tag Usage
<HTML> This tag tells the browser about the beginning of an HTML document.
Syntax: <HTML>……..</HTML>
<HEAD> This tag marks the beginning of the header section. It is a container tag.
Syntax: <HEAD>……….</HEAD>
<TITLE> This tag tells the browser what to display as the title of the web page.
Syntax: <TITLE>…..</TITLE>
<BODY> All other tags and the text to be displayed on the web page appear under the
body tag. Syntax: <BODY>……...</BODY>
Heading Tags Heading tags in HTML are used to create headings and subheadings, which
<H17 to H6> provide structure and hierarchy to the content of a webpage. aaaa aaa
Syntax: <Hn>...</Hn>, where n=1 to 6
Line Break Tag This tag is used to create a new line or a line break within a block of text.
<BR> Syntax: <BR>
84

