SlideShare une entreprise Scribd logo
1  sur  54
Creating Web Pages Using HTML and other Tools Ramon C. Sampang
Creating Web Pages Using HTML ,[object Object],[object Object],[object Object],[object Object],[object Object]
What is HTML? ,[object Object],[object Object],[object Object]
What are the basic requirements? ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
What are the basic HTML rules? ,[object Object],[object Object],[object Object],[object Object]
What are the basic HTML rules? ,[object Object],[object Object],<body bgcolor=&quot;#FFFFFF&quot;  text=&quot;#000066&quot;> … <body> tag attribute value closing tag Look inside HTML element (Tag)
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],What are the basic HTML tags?
[object Object],What are the basic HTML tags? <head>  <title>My Library</title> </head> Contains information about the HTML document <body> <p>Content of My Library’s Web Page</p> </body> Contains all information displayed on the browser </html> [ closing tag ]
[object Object],What are the basic HTML tags?
Hands on! ,[object Object],[object Object],[object Object]
Exercise 1 – Basic HTML structure ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Exercise 1 – Basic HTML structure ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
[object Object],[object Object],[object Object],[object Object],Basic HTML tags [structure]
Basic HTML tags [structure] ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Basic HTML tags [structure]
Exercise 2 - Header Tags ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
[object Object],[object Object],[object Object],[object Object],Basic HTML tags [structure]
Exercise 3 - Paragraph Tag ,[object Object],[object Object],[object Object],[object Object]
[object Object],[object Object],[object Object],[object Object],[object Object],Exercise 4 – align attribute
[object Object],[object Object],Exercise 5 - Bold, Italic or Underlined <p> <b> MyLibrary </b> aims to be the country's <i> public virtual library </I> with state-of-the art resources and associated services, available to anyone, anytime, anywhere. </p>
[object Object],[object Object],Exercise 5 - Bold, Italic or Underlined <p> <b> MyLibrary </b> aims to be the country's <b> <i> public virtual library </i> </b> with state-of-the art resources and associated services, available to anyone, anytime, anywhere. </p>
[object Object],[object Object],[object Object],[object Object],[object Object],Page layout using HTML
Break Tag ,[object Object],[object Object],[object Object],<h3> Library Hours </h3> <p> Monday – Friday <br>   8:00 a.m. – 5:00 p.m. </p>  <p> *Open on Holidays </p>
[object Object],[object Object],[object Object],Horizontal rule tag < hr width=“50%” size=“3” align=“center” >
[object Object],[object Object],Lists <h3> Objectives </h3> <ul><li> Acquire a comprehensive collection of multimedia materials</li> <li> Develop appropriate user education and  training packages</li> </ul>
[object Object],Unordered Lists <h3> Objectives </h3> <ul><li> Acquire a comprehensive collection of multimedia materials</li> <li> Develop appropriate user education and  training packages</li> </ul>
[object Object],Ordered Lists <h3> Library Resources </h3> <ol> <li> Library Collections </li> <li> Library Catalog </li> <li> Electronic Resources </liI> </ol>
[object Object],Nested Lists <ol>  <li> Library Collections </li>   <ul> <li> Books </li>   <li> Journals </li>  </ul>  <li> Library Catalog </li> <li> Electronic Resources </li>    <ul> <li> CD-ROMs </li> <li> Abstracts & Indexes </li> </ul>  </ol>
[object Object],Lists item type attribute <ol type=I>  <li> Library Collections </li>   <ul type=square> <li> Books </li>   <li> Journals </li> </ul>  <li> Library Catalog </li> <li> Electronic Resources </li>    <ul type=disc> <li> CD-ROMs </li>   <li>Abstracts & Indexes</li> </ul>  </ol>
Nested Lists with different item types <ol type=I>  <li> Library Collections </li>   <ul type=square> <li> Books </li>   <li> Journals </li> </ul>  <li> Library Catalog </li> <li> Electronic Resources </li>    <ul type=disc> <li> CD-ROMs </li>   <li>Abstracts & Indexes</li> </ul>  </ol>
[object Object],Definition  Lists <dl>  <dt> Definition Term </dt> <dd> Definition </dd> <dt> Membership Card </dt> <dd> Users of the library must present their membership card to avail of the library services and privileges. </dd> </dl>
[object Object],[object Object],[object Object],[object Object],Color, image, and other elements
 
[object Object],[object Object],[object Object],[object Object],Background color
[object Object],[object Object],[object Object],[object Object],[object Object],Exercise 6 – change background color < body bgcolor=“#ffffff” text=“#000000” link=“#0000cc” vlink=“#00ff00” alink=“#ff0000” >
Exercise 6 – change background color < body bgcolor=“#8A2BE2” text=“#ffffff” link=“#0000ff” vlink=“#00ff00” alink=“#ff0000” > < body bgcolor=“green” text=“white” link=“#ffffff” vlink=“#00ff00” alink=“#ff0000” >
Font Tags * ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
[object Object],Font color <center> <font color=“#000000&quot;><h1> My Library </h1> </font> <h2> Mission, Vision and Goals </h2></CENTER> <font color=“#ffff00”> <p> <b> MyLibrary </b> aims to be the country's <b> <i> public virtual library </i> </b> with state-of-the art resources and associated services, available to anyone, anytime, anywhere. </p> </font>
Exercise 7 - Change font color  <center> <font color=“#000000&quot;><h1> My Library </h1> </font> <h2> Mission, Vision and Goals </h2></CENTER> <font color=“#ffff00”> <p> <b> MyLibrary </b> aims to be the country's <b> <i> public virtual library </i> </b> with state-of-the art resources and associated services, available to anyone, anytime, anywhere. </p> </font>
Images/graphics on the web page ,[object Object],[object Object],[object Object]
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Images/graphics on the web page < img src=“mylogo.gif” >
Exercise 8 – Insert image  <img src=“mylogo.gif”> <h1 align=“center”> My Library </h1>  <h2 align=“center”> Mission, Vision and Goals </h2> </center> <img src=“mylogo.gif”  align=left>
[object Object],[object Object],[object Object],[object Object],[object Object],Images/graphics on the web page
Exercise 9 – Insert image  <img src=“mylogo.gif” width=“100” height=“100” border=“0”align=“left”  alt=“logo”>
Exercise 10 - Use image as background <body bgcolor=“#000800” background=marb.jpg > Respect copyright of materials, use original or free images/graphics on your web page
Build a Web site – linking web pages
Hyperlinks – linking web pages ,[object Object],[object Object],[object Object],[object Object]
[object Object],[object Object],[object Object],Hyperlinks – linking web pages Relative URL <a href=“collection.htm”>Library Collection</a> Absolute URL <a href= “http:// www.unesco.org/webworld/portal_bib/ ”> UNESCO Libraries Portal </a>
Exercise 11 – Hyperlinks  <a href=“collection.htm”> Library Collection</a> <a href= “http:// www.unesco.org/webworld/portal_bib/ ”> UNESCO Libraries Portal </a>
[object Object],[object Object],Hyperlinks – linking web pages <a href=“mylibrary.jpg”> MyLibrary </a> <a href “mylibrary.jpg”> <img src “mylibrary_sm.jpg”> </a> <a href “mylibrary.jpg” border=0> <img src “mylibrary_sm.jpg”> </a>
Exercise 12 – Hyperlinks  <a href=“mylibrary.jpg”> MyLibrary </a> <a href =“mylibrary.jpg”>  <img src=“mylibrary_sm.jpg”> </a> <a href=“mylibrary.jpg”>  <img src=“mylibrary_sm.jpg” border=0> </a>
[object Object],Hyperlinks – linking web pages Contact <a href=“mailto:me@mylibrary”> me@mylibrary.edu </a>
Add more content and other elements to your page
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]

Contenu connexe

Tendances (20)

HTML5
HTML5HTML5
HTML5
 
Html ppt
Html pptHtml ppt
Html ppt
 
CSS
CSSCSS
CSS
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
 
How to learn HTML in 10 Days
How to learn HTML in 10 DaysHow to learn HTML in 10 Days
How to learn HTML in 10 Days
 
Intro to HTML & CSS
Intro to HTML & CSSIntro to HTML & CSS
Intro to HTML & CSS
 
HTML (Web) basics for a beginner
HTML (Web) basics for a beginnerHTML (Web) basics for a beginner
HTML (Web) basics for a beginner
 
Html basics
Html basicsHtml basics
Html basics
 
Html1
Html1Html1
Html1
 
HTML Introduction
HTML IntroductionHTML Introduction
HTML Introduction
 
Html
HtmlHtml
Html
 
Html introduction
Html introductionHtml introduction
Html introduction
 
Basic Html Knowledge for students
Basic Html Knowledge for studentsBasic Html Knowledge for students
Basic Html Knowledge for students
 
(Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS (Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Html and css
Html and cssHtml and css
Html and css
 
Introduction to HTML
Introduction to HTML Introduction to HTML
Introduction to HTML
 
HTML-(workshop)7557.pptx
HTML-(workshop)7557.pptxHTML-(workshop)7557.pptx
HTML-(workshop)7557.pptx
 
HTML & CSS Masterclass
HTML & CSS MasterclassHTML & CSS Masterclass
HTML & CSS Masterclass
 

En vedette

Dmfb web-page-creation
Dmfb web-page-creationDmfb web-page-creation
Dmfb web-page-creationOTT Business
 
Webpage Creation
Webpage CreationWebpage Creation
Webpage Creationmrcarty
 
How to create basic webpage
How to create basic webpageHow to create basic webpage
How to create basic webpageJames Erro
 
Didática magna (por comenio) capítulos vi-x
Didática magna (por comenio)   capítulos vi-xDidática magna (por comenio)   capítulos vi-x
Didática magna (por comenio) capítulos vi-xAndrea Velázquez
 
Presentation: K12 Teacher Empowerment and Professional Development
Presentation: K12 Teacher Empowerment and Professional DevelopmentPresentation: K12 Teacher Empowerment and Professional Development
Presentation: K12 Teacher Empowerment and Professional DevelopmentIntelCAG
 
ICT in lesson plan & evaluation
ICT in lesson plan & evaluationICT in lesson plan & evaluation
ICT in lesson plan & evaluationDr.Suresh Isave
 
Semi Detailed Lesson Plan in Programming Languages
Semi Detailed Lesson Plan in Programming LanguagesSemi Detailed Lesson Plan in Programming Languages
Semi Detailed Lesson Plan in Programming LanguagesManila Central University
 
Empowerment Technology
Empowerment TechnologyEmpowerment Technology
Empowerment TechnologyReygie Fabro
 
Semi detailed lesson plan
Semi detailed lesson planSemi detailed lesson plan
Semi detailed lesson planFelmar Agunos
 
Sample Semi Detailed Lesson Plan in Digital Electronics - PCB Designing
Sample Semi Detailed Lesson Plan in Digital Electronics - PCB DesigningSample Semi Detailed Lesson Plan in Digital Electronics - PCB Designing
Sample Semi Detailed Lesson Plan in Digital Electronics - PCB DesigningManila Central University
 
Ict lesson plan
Ict lesson planIct lesson plan
Ict lesson planmkv789
 
STATISTICS AND PROBABILITY (TEACHING GUIDE)
STATISTICS AND PROBABILITY (TEACHING GUIDE)STATISTICS AND PROBABILITY (TEACHING GUIDE)
STATISTICS AND PROBABILITY (TEACHING GUIDE)PRINTDESK by Dan
 
Final Demo Semi Detailed Lesson Plan in TLE 2 (LAN Cabling)
Final Demo Semi Detailed Lesson Plan in TLE 2 (LAN Cabling)Final Demo Semi Detailed Lesson Plan in TLE 2 (LAN Cabling)
Final Demo Semi Detailed Lesson Plan in TLE 2 (LAN Cabling)Manila Central University
 
Semi Detailed Lesson Plan in T.L.E, Cookery
Semi Detailed Lesson Plan in T.L.E, CookerySemi Detailed Lesson Plan in T.L.E, Cookery
Semi Detailed Lesson Plan in T.L.E, CookeryQA Ilagan
 
Lesson plan in TLE I (Grade 7)
Lesson plan in TLE I (Grade 7)Lesson plan in TLE I (Grade 7)
Lesson plan in TLE I (Grade 7)QA Ilagan
 

En vedette (18)

Dmfb web-page-creation
Dmfb web-page-creationDmfb web-page-creation
Dmfb web-page-creation
 
Webpage Creation
Webpage CreationWebpage Creation
Webpage Creation
 
How to create basic webpage
How to create basic webpageHow to create basic webpage
How to create basic webpage
 
Didática magna (por comenio) capítulos vi-x
Didática magna (por comenio)   capítulos vi-xDidática magna (por comenio)   capítulos vi-x
Didática magna (por comenio) capítulos vi-x
 
MY ICT LESSON PLAN 2
MY ICT LESSON PLAN 2 MY ICT LESSON PLAN 2
MY ICT LESSON PLAN 2
 
Presentation: K12 Teacher Empowerment and Professional Development
Presentation: K12 Teacher Empowerment and Professional DevelopmentPresentation: K12 Teacher Empowerment and Professional Development
Presentation: K12 Teacher Empowerment and Professional Development
 
ICT in lesson plan & evaluation
ICT in lesson plan & evaluationICT in lesson plan & evaluation
ICT in lesson plan & evaluation
 
Semi Detailed Lesson Plan in Programming Languages
Semi Detailed Lesson Plan in Programming LanguagesSemi Detailed Lesson Plan in Programming Languages
Semi Detailed Lesson Plan in Programming Languages
 
Empowerment Technology
Empowerment TechnologyEmpowerment Technology
Empowerment Technology
 
Semi detailed lesson plan
Semi detailed lesson planSemi detailed lesson plan
Semi detailed lesson plan
 
Sample Semi Detailed Lesson Plan in Digital Electronics - PCB Designing
Sample Semi Detailed Lesson Plan in Digital Electronics - PCB DesigningSample Semi Detailed Lesson Plan in Digital Electronics - PCB Designing
Sample Semi Detailed Lesson Plan in Digital Electronics - PCB Designing
 
Ict lesson plan
Ict lesson planIct lesson plan
Ict lesson plan
 
STATISTICS AND PROBABILITY (TEACHING GUIDE)
STATISTICS AND PROBABILITY (TEACHING GUIDE)STATISTICS AND PROBABILITY (TEACHING GUIDE)
STATISTICS AND PROBABILITY (TEACHING GUIDE)
 
Pananaliksik
PananaliksikPananaliksik
Pananaliksik
 
Final Demo Semi Detailed Lesson Plan in TLE 2 (LAN Cabling)
Final Demo Semi Detailed Lesson Plan in TLE 2 (LAN Cabling)Final Demo Semi Detailed Lesson Plan in TLE 2 (LAN Cabling)
Final Demo Semi Detailed Lesson Plan in TLE 2 (LAN Cabling)
 
Semi Detailed Lesson Plan in T.L.E, Cookery
Semi Detailed Lesson Plan in T.L.E, CookerySemi Detailed Lesson Plan in T.L.E, Cookery
Semi Detailed Lesson Plan in T.L.E, Cookery
 
Lesson plan in TLE I (Grade 7)
Lesson plan in TLE I (Grade 7)Lesson plan in TLE I (Grade 7)
Lesson plan in TLE I (Grade 7)
 
Sample of Semi Detailed Lesson Plan
Sample of Semi Detailed Lesson PlanSample of Semi Detailed Lesson Plan
Sample of Semi Detailed Lesson Plan
 

Similaire à BasicHTML (20)

Intr To Html & Xhtml
Intr To Html & XhtmlIntr To Html & Xhtml
Intr To Html & Xhtml
 
HTML_Slideshow1
HTML_Slideshow1HTML_Slideshow1
HTML_Slideshow1
 
Diva
DivaDiva
Diva
 
Web1O1 - Intro to HTML/CSS
Web1O1 - Intro to HTML/CSSWeb1O1 - Intro to HTML/CSS
Web1O1 - Intro to HTML/CSS
 
How To Create Personal Web Pages On My Web
How To Create Personal Web Pages On My WebHow To Create Personal Web Pages On My Web
How To Create Personal Web Pages On My Web
 
HTML to FTP
HTML to FTPHTML to FTP
HTML to FTP
 
ARTDM 171 Week 4: Tags
ARTDM 171 Week 4: TagsARTDM 171 Week 4: Tags
ARTDM 171 Week 4: Tags
 
Html For Beginners 2
Html For Beginners 2Html For Beginners 2
Html For Beginners 2
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
 
Html
HtmlHtml
Html
 
HTML & CSS
HTML & CSSHTML & CSS
HTML & CSS
 
Html
HtmlHtml
Html
 
Html
HtmlHtml
Html
 
Tags in html
Tags in htmlTags in html
Tags in html
 
Design Tools Html Xhtml
Design Tools Html XhtmlDesign Tools Html Xhtml
Design Tools Html Xhtml
 
Html Intro2
Html Intro2Html Intro2
Html Intro2
 
AK html
AK  htmlAK  html
AK html
 
Web designing using html
Web designing using htmlWeb designing using html
Web designing using html
 
Module 2 Lesson 1
Module 2 Lesson 1Module 2 Lesson 1
Module 2 Lesson 1
 
Web Designing
Web DesigningWeb Designing
Web Designing
 

Dernier

Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...amitlee9823
 
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...Aggregage
 
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...anilsa9823
 
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRLMONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRLSeo
 
Insurers' journeys to build a mastery in the IoT usage
Insurers' journeys to build a mastery in the IoT usageInsurers' journeys to build a mastery in the IoT usage
Insurers' journeys to build a mastery in the IoT usageMatteo Carbone
 
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...rajveerescorts2022
 
John Halpern sued for sexual assault.pdf
John Halpern sued for sexual assault.pdfJohn Halpern sued for sexual assault.pdf
John Halpern sued for sexual assault.pdfAmzadHosen3
 
Cracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptxCracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptxWorkforce Group
 
RSA Conference Exhibitor List 2024 - Exhibitors Data
RSA Conference Exhibitor List 2024 - Exhibitors DataRSA Conference Exhibitor List 2024 - Exhibitors Data
RSA Conference Exhibitor List 2024 - Exhibitors DataExhibitors Data
 
Dr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdfDr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdfAdmir Softic
 
It will be International Nurses' Day on 12 May
It will be International Nurses' Day on 12 MayIt will be International Nurses' Day on 12 May
It will be International Nurses' Day on 12 MayNZSG
 
A DAY IN THE LIFE OF A SALESMAN / WOMAN
A DAY IN THE LIFE OF A  SALESMAN / WOMANA DAY IN THE LIFE OF A  SALESMAN / WOMAN
A DAY IN THE LIFE OF A SALESMAN / WOMANIlamathiKannappan
 
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangaloreamitlee9823
 
Monthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptxMonthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptxAndy Lambert
 
How to Get Started in Social Media for Art League City
How to Get Started in Social Media for Art League CityHow to Get Started in Social Media for Art League City
How to Get Started in Social Media for Art League CityEric T. Tung
 
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdfRenandantas16
 
Best VIP Call Girls Noida Sector 40 Call Me: 8448380779
Best VIP Call Girls Noida Sector 40 Call Me: 8448380779Best VIP Call Girls Noida Sector 40 Call Me: 8448380779
Best VIP Call Girls Noida Sector 40 Call Me: 8448380779Delhi Call girls
 
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...lizamodels9
 
Boost the utilization of your HCL environment by reevaluating use cases and f...
Boost the utilization of your HCL environment by reevaluating use cases and f...Boost the utilization of your HCL environment by reevaluating use cases and f...
Boost the utilization of your HCL environment by reevaluating use cases and f...Roland Driesen
 

Dernier (20)

Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
 
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
 
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
 
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRLMONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
 
Insurers' journeys to build a mastery in the IoT usage
Insurers' journeys to build a mastery in the IoT usageInsurers' journeys to build a mastery in the IoT usage
Insurers' journeys to build a mastery in the IoT usage
 
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
 
John Halpern sued for sexual assault.pdf
John Halpern sued for sexual assault.pdfJohn Halpern sued for sexual assault.pdf
John Halpern sued for sexual assault.pdf
 
Cracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptxCracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptx
 
Forklift Operations: Safety through Cartoons
Forklift Operations: Safety through CartoonsForklift Operations: Safety through Cartoons
Forklift Operations: Safety through Cartoons
 
RSA Conference Exhibitor List 2024 - Exhibitors Data
RSA Conference Exhibitor List 2024 - Exhibitors DataRSA Conference Exhibitor List 2024 - Exhibitors Data
RSA Conference Exhibitor List 2024 - Exhibitors Data
 
Dr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdfDr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdf
 
It will be International Nurses' Day on 12 May
It will be International Nurses' Day on 12 MayIt will be International Nurses' Day on 12 May
It will be International Nurses' Day on 12 May
 
A DAY IN THE LIFE OF A SALESMAN / WOMAN
A DAY IN THE LIFE OF A  SALESMAN / WOMANA DAY IN THE LIFE OF A  SALESMAN / WOMAN
A DAY IN THE LIFE OF A SALESMAN / WOMAN
 
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
 
Monthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptxMonthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptx
 
How to Get Started in Social Media for Art League City
How to Get Started in Social Media for Art League CityHow to Get Started in Social Media for Art League City
How to Get Started in Social Media for Art League City
 
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
 
Best VIP Call Girls Noida Sector 40 Call Me: 8448380779
Best VIP Call Girls Noida Sector 40 Call Me: 8448380779Best VIP Call Girls Noida Sector 40 Call Me: 8448380779
Best VIP Call Girls Noida Sector 40 Call Me: 8448380779
 
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
 
Boost the utilization of your HCL environment by reevaluating use cases and f...
Boost the utilization of your HCL environment by reevaluating use cases and f...Boost the utilization of your HCL environment by reevaluating use cases and f...
Boost the utilization of your HCL environment by reevaluating use cases and f...
 

BasicHTML

  • 1. Creating Web Pages Using HTML and other Tools Ramon C. Sampang
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30. Nested Lists with different item types <ol type=I> <li> Library Collections </li> <ul type=square> <li> Books </li> <li> Journals </li> </ul> <li> Library Catalog </li> <li> Electronic Resources </li> <ul type=disc> <li> CD-ROMs </li> <li>Abstracts & Indexes</li> </ul> </ol>
  • 31.
  • 32.
  • 33.  
  • 34.
  • 35.
  • 36. Exercise 6 – change background color < body bgcolor=“#8A2BE2” text=“#ffffff” link=“#0000ff” vlink=“#00ff00” alink=“#ff0000” > < body bgcolor=“green” text=“white” link=“#ffffff” vlink=“#00ff00” alink=“#ff0000” >
  • 37.
  • 38.
  • 39. Exercise 7 - Change font color <center> <font color=“#000000&quot;><h1> My Library </h1> </font> <h2> Mission, Vision and Goals </h2></CENTER> <font color=“#ffff00”> <p> <b> MyLibrary </b> aims to be the country's <b> <i> public virtual library </i> </b> with state-of-the art resources and associated services, available to anyone, anytime, anywhere. </p> </font>
  • 40.
  • 41.
  • 42. Exercise 8 – Insert image <img src=“mylogo.gif”> <h1 align=“center”> My Library </h1> <h2 align=“center”> Mission, Vision and Goals </h2> </center> <img src=“mylogo.gif” align=left>
  • 43.
  • 44. Exercise 9 – Insert image <img src=“mylogo.gif” width=“100” height=“100” border=“0”align=“left” alt=“logo”>
  • 45. Exercise 10 - Use image as background <body bgcolor=“#000800” background=marb.jpg > Respect copyright of materials, use original or free images/graphics on your web page
  • 46. Build a Web site – linking web pages
  • 47.
  • 48.
  • 49. Exercise 11 – Hyperlinks <a href=“collection.htm”> Library Collection</a> <a href= “http:// www.unesco.org/webworld/portal_bib/ ”> UNESCO Libraries Portal </a>
  • 50.
  • 51. Exercise 12 – Hyperlinks <a href=“mylibrary.jpg”> MyLibrary </a> <a href =“mylibrary.jpg”> <img src=“mylibrary_sm.jpg”> </a> <a href=“mylibrary.jpg”> <img src=“mylibrary_sm.jpg” border=0> </a>
  • 52.
  • 53. Add more content and other elements to your page
  • 54.