Basic Webpage Design: Understanding Web Technologies and Applications
Basic Webpage Design: Understanding Web Technologies and Applications
Understanding Web
Technologies and Applications
Objectives
• To know the basics of the Internet and HTML
• To identify the HTML Coding Standards
• To learn the Basic Web Page Tags
• Formatting tags to Your Page
• To identify the tools in developing web pages
• Definition of terms
Let us review
1. Open Notepad
- Click Start> Programs> Accessories>
Notepad
2. In Notepad, type the following;
<html>
<head>
<title>Hello World</title>
</head>
<body>
My name is __________.
</body>
</html>
3. Save the file as lastname_Act1.html
HTML Coding Standards
<title> </title> Identifies the title of the page, contained within the
<head> tag.
<body> </body> Surrounds the text of the page.
Basic Web Page Tags
<html>
<head>
<title>Page Title Goes
Here</title>
</head>
<body>
Page content goes here.
</body>
</html>
Basic Web Page Tags
Paragraph
• The <p> tag tells the browser to insert a new
paragraph.
– The closing tag for this (</p>) is optional, but
recommended.
• The <p> tag has one attribute, ‘align’ that
controls the on-page alignment of your
paragraph.
– Options are left, center, right, justify
– This attribute has been Deprecated in HTML 4.0.
Basic Web Page Tags
Line Breaks
To insert a line break, use the <br> tag. Note, that this tag has no
closing tag.
Ex. ‘Hello<br>World’:
Hello
World
Basic Web Page Tags
How <p> and <br> Differ
The <br> tag forces a one-line break, while the <p> tag
creates a new paragraph with a two-line break.
Text Spacing
Attributes
bgcolor – the page’s background color.
background – the page’s background image.
text – the default color of all the page’s text.
link – the default color for all links.
alink – the default color for all default links.
vlink – the default color for all visited links.
Basic Web Page Tags