1 / 18

INTRODUCTION TO HTML

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

yori
Download Presentation

INTRODUCTION TO HTML

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Creating a Web Page INTRODUCTION TO HTML Presented by: Bernadette G. Bautista Manuel I. Santos MNHS April 29, 2011

  2. 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

  3. What is HTML? HTML – stands for Hyper Text Markup Language. It serves as the building block of a web page.

  4. Basic HTML Tags • <html> </html> • <head> </head> • <title> </title> • <body> </body>

  5. Basic Structure of a WebPage using HTML <html> <head> <title> my first webpage </title> </head> <body> welcome to my webpage </body> </html>

  6. 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

  7. 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>

  8. 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>

  9. 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>

  10. 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>

  11. Enhancing your Webpage • Inserting a background color <html> <head> <title> my first webpage </title> </head> <body bgcolor=“yellow”> welcome to my webpage </body> </html>

  12. 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>

  13. 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>

  14. 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>

  15. 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>

  16. 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>

  17. 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>

  18. 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>

More Related