1.94k likes | 4.46k Views
Creating a Web Page. INTRODUCTION TO HTML. Presented by: Bernadette G. Bautista Manuel I. Santos MNHS April 29, 2011. In this course you will learn about. Basic HTML Tags Basic structure of a webpage using HTML Saving an html file Enhancing your webpage Formatting Fonts Animating Text
E N D
Creating a Web Page INTRODUCTION TO HTML Presented by: Bernadette G. Bautista Manuel I. Santos MNHS April 29, 2011
In this course you will learn about... • Basic HTML Tags • Basic structure of a webpage using HTML • Saving an html file • Enhancing your webpage • Formatting Fonts • Animating Text • Inserting a color background and image background • Inserting an image • Assigning Hyperlinks
What is HTML? HTML – stands for Hyper Text Markup Language. It serves as the building block of a web page.
Basic HTML Tags • <html> </html> • <head> </head> • <title> </title> • <body> </body>
Basic Structure of a WebPage using HTML <html> <head> <title> my first webpage </title> </head> <body> welcome to my webpage </body> </html>
Saving an HTML File • After typing the codes, click on file, saveas • Locate the folder you created for your webpage. Example: mywebpage/desktop folder • Type the filename.html • Click on Save
Enhancing your Webpage • Formatting Fonts <html> <head> <title> my first webpage </title> </head> <body> <fontface=“times new roman” size=“25” color=“black”> welcome to my webpage </font> </body> </html>
In the notepad work area, type this: <html> <head> <title> my first webpage </head> </title> <body> <fontface=“times new roman” size=“50” color=“yellow”> Welcome to My Webpage </font> </body> </html>
Enhancing your Webpage • Animating Text <html> <head> <title> my first webpage </title> </head> <body> <fontface=“times new roman” size=“25” color=“black”> <marquee behavior=“alternate”> welcome to my webpage </marquee> </font> </body> </html>
In the notepad work area, type this: <html> <head> <title> my first webpage </head> </title> <body> <fontface=“times new roman” size=“50” color=“yellow”> <marquee behavior=“alternate”> Welcome to My Webpage </marquee> </font> </body> </html>
Enhancing your Webpage • Inserting a background color <html> <head> <title> my first webpage </title> </head> <body bgcolor=“yellow”> welcome to my webpage </body> </html>
In the notepad work area, type this: <html> <head> <title> my first webpage </head> </title> <body bgcolor=“yellow”> <fontface=“times new roman” size=“50” color=“yellow”> <marquee behavior=“alternate”> Welcome to My Webpage </marquee> </font> </body> </html>
Enhancing your Webpage • Inserting a background image <html> <head> <title> my first webpage </title> </head> <body background=“filelocation/filename/fileextension”> welcome to my webpage </body> </html>
In the notepad work area, type this: <html> <head> <title> my first webpage </head> </title> <body background=“C:\Users\jpbspa36\Desktop\pics ict training/rome.JPG”> <fontface=“times new roman” size=“50” color=“yellow”> <marquee behavior=“alternate”> Welcome to My Webpage </marquee> </font> </body> </html>
Enhancing your Webpage • Inserting an image <html> <head> <title> my first webpage </title> </head> <body background=“filelocation/filename/fileextension”> welcome to my webpage <img src=“filelocation/filename/fileextension”> </body> </html>
In the notepad work area, type this: <html> <head> <title> my first webpage </head> </title> <body background=“C:\Users\jpbspa36\Desktop\pics ict training/rome.JPG”> <fontface=“times new roman” size=“50” color=“yellow”> <marquee behavior=“alternate”> Welcome to My Webpage </marquee> </font> <img src=“C:\Users\jpbspa36\Desktop\pics ict training/qcalogo2.jpg> </body> </html>
Enhancing your Webpage • Assigning Hyperlinks <html> <head> <title> my first webpage </title> </head> <body background=“filelocation/filename/fileextension”> welcome to my webpage <ahref=“linklocation/filename/fileextension”> <img src=“filelocation/filename/fileextension”> </ahref> </body> </html>
In the notepad work area, type this: <html> <head> <title> my first webpage </head> </title> <body background=“C:\Users\jpbspa36\Desktop\pics ict training/rome.JPG”> <fontface=“times new roman” size=“50” color=“yellow”> <marquee behavior=“alternate”> Welcome to My Webpage </marquee> </font> <ahref=www.google.com> <img src=“C:\Users\jpbspa36\Desktop\pics ict training/qcalogo2.jpg> </ahref> </body> </html>