SlideShare une entreprise Scribd logo
1  sur  43
HTML AN INTRODUCTION TO WEB PAGE PROGRAMMING
INTRODUCTION TO HTML ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
HTML Elements and Tags ,[object Object],[object Object],[object Object],[object Object],[object Object]
HOW TO START ,[object Object],[object Object],[object Object],[object Object]
Code With HTML <HTML> <HEAD> <TITLE> MY FIRST PAGE </TITLE> </HEAD> <BODY> GLOBAL INFORMATION CHANNEL </BODY> </HTML>
Explain these tags ,[object Object],[object Object],[object Object],[object Object]
Types of HTML Tags There are two different types of tags:-> Container Element:-> Container Tags contains  start tag  &  end tag  i.e.  <HTML>… </HTML> Empty Element:-> Empty Tags contains  start tag  i.e. <BR>
Text Formatting Tags ,[object Object],[object Object],[object Object],[object Object],[object Object]
Heading Tag Code <html> <head><title>heading</title></head> <body> <h1> GLOBAL INFO CHANNEL</h1> <h2> GLOBAL INFO CHANNEL</h2> <h3> GLOBAL INFO CHANNEL</h3> <h4> GLOBAL INFO CHANNEL</h4> <h5> GLOBAL INFO CHANNEL</h5> <h6> GLOBAL INFO CHANNEL</h6> </body> </html>
Result of Heading Code
HTML Paragraph Tag ,[object Object],[object Object],[object Object],[object Object]
Line Break & Horizontal Line Tag ,[object Object],[object Object],[object Object],[object Object]
Text Formatting Tags <b> <big> <em> <i> <small> <strong> <sub> <super> <ins> <del> <tt> <u> <strike> Defines bold text Defines big text Defines emphasized text  Defines italic text Defines small text Defines strong text Defines subscripted text Defines superscripted text Defines inserted text Defines deleted text Defines teletype text Defines underline text Defines strike text
Text Formatting Code <html> <head></head> <body> <b>This text is Bold</b> <br><em>This text is Emphasized</em> <br><i>This text is Italic</i> <br><small>This text is Small</small> <br>This is<sub> Subscript</sub> and <sup>Superscript</sup> <br><strong>This text is Strong</strong> <br><big>This text is Big</big> <br><u>This text is Underline</u> <br><strike>This text is Strike</strike> <br><tt>This text is Teletype</tt> </body> </html>
Result of Text Formatting Code
Font Tag ,[object Object],[object Object],[object Object]
Font Tag Code <html> <head><title> fonts</title></head> <body> <br><font color=“green&quot; size=&quot;7&quot; face=&quot;Arial&quot;> GLOBAL INFORMATION CHANNEL </font> <br><font color=“green&quot; size=&quot;6&quot; face=&quot;Comic Sans MS &quot;> GLOBAL INFORMATION CHANNEL </font> <br><font color=“green&quot; size=&quot;5&quot; face=&quot;Lucida Sans Unicode&quot;> GLOBAL INFORMATION CHANNEL </font> <br><font color=“green&quot; size=&quot;4&quot; face=&quot;Courier New&quot;> GLOBAL INFORMATION CHANNEL </font> <br><font color=“green&quot; size=&quot;3&quot; face=&quot;Times New Roman&quot;> GLOBAL INFORMATION CHANNEL </font> <br><font color=“green&quot; size=&quot;2&quot; face=&quot;Arial Black&quot;> GLOBAL INFORMATION CHANNEL </font> <br><font color=“green&quot; size=&quot;1&quot; face=&quot;Impact&quot;> GLOBAL INFORMATION CHANNEL </font> </body>  </html>
Result of Font Code
Background & Text Color Tag ,[object Object],[object Object],[object Object],[object Object]
Text Alignment Tag ,[object Object],[object Object],[object Object],[object Object]
Hyperlink Tag ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Result of Hyperlink Code
Image Tag ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Image attributes - <img> tag <img> <Src>  <Alt> <Width> <Height> <Border> <Hspace> <Vspace> <Align> <background> Defines an image  display an image on a page,Src stands for &quot;source&quot;.  Define &quot;alternate text&quot; for an image Defines the width of the image Defines the height of the image Defines border of the image Horizontal space of the image Vertical space of the image Align an image within the text Add a background image to an HTML page
Code & Result of the Image  <html><body> <p><img src=&quot;file:///C:/WINDOWS/Zapotec.bmp&quot;  align=&quot;left&quot; width=&quot;48&quot; height=&quot;48&quot;> </p> <p><img src =&quot;file:///C:/WINDOWS/Zapotec.bmp&quot; align=&quot;right&quot; width=&quot;48&quot; height=&quot;48&quot;></p> </body></html> <HTML> <<body background=&quot;file:///C:/WINDOWS/Soap%20Bubbles.bmp&quot; text=&quot;white&quot;> <br><br><br> <h2> Background Image!</h2> </BODY></HTML>
Code & Result of the Image  <html><body> <p>An image  <img src=&quot;file:///C:/WINDOWS/Zapotec.bmp&quot;  align=&quot;bottom&quot; width=&quot;48&quot; height=&quot;48&quot;> in the text</p> <p>An image  <img src =&quot;file:///C:/WINDOWS/Zapotec.bmp&quot; align=&quot;middle&quot; width=&quot;48&quot; height=&quot;48&quot;> in the text</p> <p>An image  <img src =&quot;file:///C:/WINDOWS/Zapotec.bmp&quot; align=&quot;top&quot; width=&quot;48&quot; height=&quot;48&quot;> in the text</p> <p>Note that bottom alignment is the default alignment</p> <p><img src =&quot;file:///C:/WINDOWS/Zapotec.bmp&quot; width=&quot;48&quot; height=&quot;48&quot;>  An image before the text</p> <p>An image after the text <img src =&quot;file:///C:/WINDOWS/Zapotec.bmp&quot; width=&quot;48&quot; height=&quot;48&quot;> </p> </body></html>
Code & Result of the Image <html><body> <p><img src=&quot;file:///C:/WINDOWS/Zapotec.bmp&quot;  align=&quot;bottom&quot; width=&quot;20&quot; height=&quot;20&quot;> </p> <p><img src =&quot;file:///C:/WINDOWS/Zapotec.bmp&quot; align=&quot;middle&quot; width=&quot;40&quot; height=&quot;40&quot;></p> <p><img src =&quot;file:///C:/WINDOWS/Zapotec.bmp&quot; align=&quot;top&quot; width=&quot;60&quot; height=&quot;60&quot;></p> <p><img src =&quot;file:///C:/WINDOWS/Zapotec.bmp&quot; width=&quot;80&quot; height=&quot;80&quot;> </p> <p><img src =&quot;file:///C:/WINDOWS/Zapotec.bmp&quot; width=&quot;100&quot; height=&quot;100&quot;> </p> </body></html>
HTML Table Tag <table> <tr>  <td>  <th> <Caption> <colgroup> <col> <thead> <tbody> <tfoot> < Cellspacing> <Cellpadding> <Colspan> <rowspan> <Border> used to create table table is divided into rows each row is divided into data cells Headings in a table caption to the table Defines groups of table columns Defines the attribute values for one or more columns in a table Defines a table head Defines a table body  Defines a table footer  amount of space between table cells. space around the edges of each cell No of column working with will span No of rows working with will span attribute takes a number
Code & Result of the Table  <html> <body> <h3>Table without border</h3> <table> <tr> <td>MILK</td> <td>TEA</td> <td>COFFEE</td> </tr> <tr> <td>400</td> <td>500</td> <td>600</td> </tr> </table> </body> </html>
Table Code with Border & Header <html><body> <h4>Horizontal Header:</h4> <table border=&quot;1&quot;> <tr> <th>Name</th> <th>Loan No</th> <th>Amount</th> </tr> <tr> <td>Jones</td> <td>L-1</td> <td>5000</td></tr> </table><br><br> <h4>Vertical Header:</h4> <table border=&quot;5&quot;> <tr> <th>Name</th> <td>Jones</td> </tr> <tr> <th>Loan No</th> <td>L-1</td> </tr> <tr> <th>Amount</th> <td>5000</td></tr> </table> </body></html>
Table Code with Colspan & Rowspan <html><body> <h4>Cell that spans two columns:</h4> <table border=&quot;4&quot;> <tr> <th>Name</th> <th colspan=&quot;2&quot;>Loan No</th> </tr> <tr> <td>Jones</td> <td>L-1</td> <td>L-2</td> </tr> </table> <h4>Cell that spans two rows:</h4> <table border=&quot;8&quot;> <tr> <th>Name</th> <td>Jones</td></tr><tr> <th rowspan=&quot;2&quot;>Loan No</th> <td>L-1</td></tr><tr> <td>L-2</td></tr></table> </body></html>
Table Code with Caption & ColSpacing <html> <body> <table border=&quot;1&quot;> <caption>My Caption</caption> <tr> <td>Milk</td> <td>Tea</td> </tr> <tr> <td></td> <td>Coffee</td> </tr> </table> </body> </html>
Cellpadding,Image & Backcolor Code <html><body> <h3>Without cellpadding:</h3> <table border=&quot;2&quot; bgcolor=&quot;green&quot;> <tr> <td>Jones</td> <td>Smith</td></tr>  <tr> <td>Hayes</td> <td>Jackson</td></tr></table> <h4>With cellpadding:</h4> <table border=&quot;8&quot;  cellpadding=&quot;10&quot; background=&quot;file:///C:/WINDOWS/FeatherTexture.bmp&quot;> <tr> <td>Jones</td> <td>Smith</td></tr>  <tr> <td>Hayes</td> <td>Jackson</td></tr></table> </body></html>
HTML List Tag ,[object Object],[object Object],[object Object],[object Object]
List Tags <LI> <OL> <UL> <DL> <DT> <DD> <LI> is an empty tag,it is used for representing the list items  Ordered list Unordered list Defines a definition list Defines a term (an item) in a definition list Defines a description of a term in a definition list
Unordered List ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Code & Result of the Unordered List   <html><body> <h4>Disc bullets list:</h4> <ul type=&quot;disc&quot;> <li>Jones</li> <li>Smith</li> <li>Hayes</li> <li>Jackson</li></ul>  <h4>Circle bullets list:</h4> <ul type=&quot;circle&quot;> <li>Jones</li> <li>Simth</li> <li>Hayes</li> <li>Jackson</li></ul>  <h4>Square bullets list:</h4> <ul type=&quot;square&quot;> <li>Jones</li> <li>Smith</li> <li>Hayes</li> <li>Jackson</li></ul> </body></html>
Ordered List ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Code & Result of the Ordered List <html><body> <h4>Numbered list:</h4> <ol> <li>Jones</li> <li>Smith</li> <li>Hayes</li> <li>Jackson</li></ol>  <h4>Letters list:</h4> <ol type=&quot;A&quot;> <li>Jones</li> <li>Smith</li> <li>Hayes</li> <li>Jackson</li></ol>  <h4>Roman numbers list:</h4> <ol type=&quot;I&quot;> <li>Jones</li> <li>Smith</li> <li>Hayes</li> <li>Jackson</li></ol>  </body></html>
HTML Form ,[object Object],[object Object],[object Object],[object Object],[object Object]
Form Tags <form> <input> <text> <textarea> <password> <label> <option> <select> <button> <value> <checkbox> <dropdown box> Defines a form for user input used to create an input field Creates a single line text entry field Defines a text-area (a multi-line text input control) Creates a single line text entry field. And the characters entered are shown as asterisks (*) Defines a label to a control Creates a Radio Button. Defines a selectable list (a drop-down box) Defines a push button attribute of the option element. select or unselect a checkbox A drop-down box is a selectable list
Code of the HTML Form  <html><body><form> <h1>Create a Internet Mail Account</h1> <p>First Name <input type=&quot;text&quot; name=&quot;T1&quot; size=&quot;30&quot;></p> <p>Last Name <input type=&quot;text&quot; name=&quot;T2&quot; size=&quot;30&quot;></p> <p>Desired Login Name <input type=&quot;text&quot; name=&quot;T3&quot; size=&quot;20&quot;> @mail.com</p> <p>Password <input type=&quot;password&quot; name=&quot;T4&quot; size=&quot;20&quot;></p> <input type=&quot;radio&quot; checked=&quot;checked&quot; name=&quot;sex&quot; value=&quot;male&quot; /> Male</br> <input type=&quot;radio&quot; name=&quot;sex&quot; value=&quot;female&quot; /> Female <p>Birthday <input type=&quot;text&quot; name=&quot;T6&quot; size=&quot;05&quot;> <select size=&quot;1&quot; name=&quot;D2&quot;> <option>-Select One-</option> <option>January</option> <option>February</option> <option>March</option> </select> <input type=&quot;text&quot; name=&quot;T7&quot; size=&quot;10&quot;></p> TypeYourself<textarea rows=&quot;4&quot; name=&quot;S1&quot; cols=&quot;20&quot;></textarea> <br><input type=&quot;submit&quot; value=&quot;Accept&quot; name=&quot;B1&quot;> <input type=&quot;reset“ value=&quot;Cancel&quot; name=&quot;B2&quot;></br> </form></body></html>
Result of the Form Code

Contenu connexe

Tendances (20)

Presentation on HTML
Presentation on HTMLPresentation on HTML
Presentation on HTML
 
HTML Tags
HTML TagsHTML Tags
HTML Tags
 
HTML Text formatting tags
HTML Text formatting tagsHTML Text formatting tags
HTML Text formatting tags
 
Lecture 2 introduction to html
Lecture 2  introduction to htmlLecture 2  introduction to html
Lecture 2 introduction to html
 
Learn html Basics
Learn html BasicsLearn html Basics
Learn html Basics
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
 
Html
HtmlHtml
Html
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
 
Web Development using HTML & CSS
Web Development using HTML & CSSWeb Development using HTML & CSS
Web Development using HTML & CSS
 
HTML Forms
HTML FormsHTML Forms
HTML Forms
 
Cascading Style Sheet (CSS)
Cascading Style Sheet (CSS)Cascading Style Sheet (CSS)
Cascading Style Sheet (CSS)
 
Html
HtmlHtml
Html
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
Html
HtmlHtml
Html
 
Intro Html
Intro HtmlIntro Html
Intro Html
 
Introduction to JavaScript
Introduction to JavaScriptIntroduction to JavaScript
Introduction to JavaScript
 
Tags in html
Tags in htmlTags in html
Tags in html
 
Complete Lecture on Css presentation
Complete Lecture on Css presentation Complete Lecture on Css presentation
Complete Lecture on Css presentation
 
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
 

En vedette

Introduction to html course digital markerters
Introduction to html course digital markertersIntroduction to html course digital markerters
Introduction to html course digital markertersSEO SKills
 
HTML presentation for beginners
HTML presentation for beginnersHTML presentation for beginners
HTML presentation for beginnersjeroenvdmeer
 
Internet History
Internet HistoryInternet History
Internet HistoryJohn Grace
 
The History Of The Internet Presentation
The  History Of The  Internet  PresentationThe  History Of The  Internet  Presentation
The History Of The Internet Presentationdgieseler1
 
Html / CSS Presentation
Html / CSS PresentationHtml / CSS Presentation
Html / CSS PresentationShawn Calvert
 
The Internet Presentation
The Internet Presentation The Internet Presentation
The Internet Presentation guest9e3d59
 

En vedette (9)

HTML CSS Basics
HTML CSS BasicsHTML CSS Basics
HTML CSS Basics
 
21 web-developement-trends
21 web-developement-trends21 web-developement-trends
21 web-developement-trends
 
Introduction to html course digital markerters
Introduction to html course digital markertersIntroduction to html course digital markerters
Introduction to html course digital markerters
 
CSS ppt
CSS pptCSS ppt
CSS ppt
 
HTML presentation for beginners
HTML presentation for beginnersHTML presentation for beginners
HTML presentation for beginners
 
Internet History
Internet HistoryInternet History
Internet History
 
The History Of The Internet Presentation
The  History Of The  Internet  PresentationThe  History Of The  Internet  Presentation
The History Of The Internet Presentation
 
Html / CSS Presentation
Html / CSS PresentationHtml / CSS Presentation
Html / CSS Presentation
 
The Internet Presentation
The Internet Presentation The Internet Presentation
The Internet Presentation
 

Similaire à Introduction to html (20)

Html TAGS
Html TAGSHtml TAGS
Html TAGS
 
Html tag
Html tagHtml tag
Html tag
 
Htmltag.ppt
Htmltag.pptHtmltag.ppt
Htmltag.ppt
 
Htmltag.ppt
Htmltag.pptHtmltag.ppt
Htmltag.ppt
 
Cascading Style Sheets
Cascading Style SheetsCascading Style Sheets
Cascading Style Sheets
 
Html intro
Html introHtml intro
Html intro
 
Html intro
Html introHtml intro
Html intro
 
KMUTNB - Internet Programming 3/7
KMUTNB - Internet Programming 3/7KMUTNB - Internet Programming 3/7
KMUTNB - Internet Programming 3/7
 
Html tags
Html tagsHtml tags
Html tags
 
HTML & CSS
HTML & CSSHTML & CSS
HTML & CSS
 
Html tutorial
Html tutorialHtml tutorial
Html tutorial
 
Prabu html
Prabu htmlPrabu html
Prabu html
 
Diva
DivaDiva
Diva
 
Html
HtmlHtml
Html
 
Html
HtmlHtml
Html
 
Html
HtmlHtml
Html
 
Html
HtmlHtml
Html
 
Html
HtmlHtml
Html
 
Understanding html
Understanding htmlUnderstanding html
Understanding html
 
HTML Fundamentals
HTML FundamentalsHTML Fundamentals
HTML Fundamentals
 

Dernier

Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 

Dernier (20)

Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 

Introduction to html

  • 1. HTML AN INTRODUCTION TO WEB PAGE PROGRAMMING
  • 2.
  • 3.
  • 4.
  • 5. Code With HTML <HTML> <HEAD> <TITLE> MY FIRST PAGE </TITLE> </HEAD> <BODY> GLOBAL INFORMATION CHANNEL </BODY> </HTML>
  • 6.
  • 7. Types of HTML Tags There are two different types of tags:-> Container Element:-> Container Tags contains start tag & end tag i.e. <HTML>… </HTML> Empty Element:-> Empty Tags contains start tag i.e. <BR>
  • 8.
  • 9. Heading Tag Code <html> <head><title>heading</title></head> <body> <h1> GLOBAL INFO CHANNEL</h1> <h2> GLOBAL INFO CHANNEL</h2> <h3> GLOBAL INFO CHANNEL</h3> <h4> GLOBAL INFO CHANNEL</h4> <h5> GLOBAL INFO CHANNEL</h5> <h6> GLOBAL INFO CHANNEL</h6> </body> </html>
  • 11.
  • 12.
  • 13. Text Formatting Tags <b> <big> <em> <i> <small> <strong> <sub> <super> <ins> <del> <tt> <u> <strike> Defines bold text Defines big text Defines emphasized text  Defines italic text Defines small text Defines strong text Defines subscripted text Defines superscripted text Defines inserted text Defines deleted text Defines teletype text Defines underline text Defines strike text
  • 14. Text Formatting Code <html> <head></head> <body> <b>This text is Bold</b> <br><em>This text is Emphasized</em> <br><i>This text is Italic</i> <br><small>This text is Small</small> <br>This is<sub> Subscript</sub> and <sup>Superscript</sup> <br><strong>This text is Strong</strong> <br><big>This text is Big</big> <br><u>This text is Underline</u> <br><strike>This text is Strike</strike> <br><tt>This text is Teletype</tt> </body> </html>
  • 15. Result of Text Formatting Code
  • 16.
  • 17. Font Tag Code <html> <head><title> fonts</title></head> <body> <br><font color=“green&quot; size=&quot;7&quot; face=&quot;Arial&quot;> GLOBAL INFORMATION CHANNEL </font> <br><font color=“green&quot; size=&quot;6&quot; face=&quot;Comic Sans MS &quot;> GLOBAL INFORMATION CHANNEL </font> <br><font color=“green&quot; size=&quot;5&quot; face=&quot;Lucida Sans Unicode&quot;> GLOBAL INFORMATION CHANNEL </font> <br><font color=“green&quot; size=&quot;4&quot; face=&quot;Courier New&quot;> GLOBAL INFORMATION CHANNEL </font> <br><font color=“green&quot; size=&quot;3&quot; face=&quot;Times New Roman&quot;> GLOBAL INFORMATION CHANNEL </font> <br><font color=“green&quot; size=&quot;2&quot; face=&quot;Arial Black&quot;> GLOBAL INFORMATION CHANNEL </font> <br><font color=“green&quot; size=&quot;1&quot; face=&quot;Impact&quot;> GLOBAL INFORMATION CHANNEL </font> </body> </html>
  • 19.
  • 20.
  • 21.
  • 23.
  • 24. Image attributes - <img> tag <img> <Src> <Alt> <Width> <Height> <Border> <Hspace> <Vspace> <Align> <background> Defines an image display an image on a page,Src stands for &quot;source&quot;. Define &quot;alternate text&quot; for an image Defines the width of the image Defines the height of the image Defines border of the image Horizontal space of the image Vertical space of the image Align an image within the text Add a background image to an HTML page
  • 25. Code & Result of the Image <html><body> <p><img src=&quot;file:///C:/WINDOWS/Zapotec.bmp&quot; align=&quot;left&quot; width=&quot;48&quot; height=&quot;48&quot;> </p> <p><img src =&quot;file:///C:/WINDOWS/Zapotec.bmp&quot; align=&quot;right&quot; width=&quot;48&quot; height=&quot;48&quot;></p> </body></html> <HTML> <<body background=&quot;file:///C:/WINDOWS/Soap%20Bubbles.bmp&quot; text=&quot;white&quot;> <br><br><br> <h2> Background Image!</h2> </BODY></HTML>
  • 26. Code & Result of the Image <html><body> <p>An image <img src=&quot;file:///C:/WINDOWS/Zapotec.bmp&quot; align=&quot;bottom&quot; width=&quot;48&quot; height=&quot;48&quot;> in the text</p> <p>An image <img src =&quot;file:///C:/WINDOWS/Zapotec.bmp&quot; align=&quot;middle&quot; width=&quot;48&quot; height=&quot;48&quot;> in the text</p> <p>An image <img src =&quot;file:///C:/WINDOWS/Zapotec.bmp&quot; align=&quot;top&quot; width=&quot;48&quot; height=&quot;48&quot;> in the text</p> <p>Note that bottom alignment is the default alignment</p> <p><img src =&quot;file:///C:/WINDOWS/Zapotec.bmp&quot; width=&quot;48&quot; height=&quot;48&quot;> An image before the text</p> <p>An image after the text <img src =&quot;file:///C:/WINDOWS/Zapotec.bmp&quot; width=&quot;48&quot; height=&quot;48&quot;> </p> </body></html>
  • 27. Code & Result of the Image <html><body> <p><img src=&quot;file:///C:/WINDOWS/Zapotec.bmp&quot; align=&quot;bottom&quot; width=&quot;20&quot; height=&quot;20&quot;> </p> <p><img src =&quot;file:///C:/WINDOWS/Zapotec.bmp&quot; align=&quot;middle&quot; width=&quot;40&quot; height=&quot;40&quot;></p> <p><img src =&quot;file:///C:/WINDOWS/Zapotec.bmp&quot; align=&quot;top&quot; width=&quot;60&quot; height=&quot;60&quot;></p> <p><img src =&quot;file:///C:/WINDOWS/Zapotec.bmp&quot; width=&quot;80&quot; height=&quot;80&quot;> </p> <p><img src =&quot;file:///C:/WINDOWS/Zapotec.bmp&quot; width=&quot;100&quot; height=&quot;100&quot;> </p> </body></html>
  • 28. HTML Table Tag <table> <tr> <td> <th> <Caption> <colgroup> <col> <thead> <tbody> <tfoot> < Cellspacing> <Cellpadding> <Colspan> <rowspan> <Border> used to create table table is divided into rows each row is divided into data cells Headings in a table caption to the table Defines groups of table columns Defines the attribute values for one or more columns in a table Defines a table head Defines a table body Defines a table footer amount of space between table cells. space around the edges of each cell No of column working with will span No of rows working with will span attribute takes a number
  • 29. Code & Result of the Table <html> <body> <h3>Table without border</h3> <table> <tr> <td>MILK</td> <td>TEA</td> <td>COFFEE</td> </tr> <tr> <td>400</td> <td>500</td> <td>600</td> </tr> </table> </body> </html>
  • 30. Table Code with Border & Header <html><body> <h4>Horizontal Header:</h4> <table border=&quot;1&quot;> <tr> <th>Name</th> <th>Loan No</th> <th>Amount</th> </tr> <tr> <td>Jones</td> <td>L-1</td> <td>5000</td></tr> </table><br><br> <h4>Vertical Header:</h4> <table border=&quot;5&quot;> <tr> <th>Name</th> <td>Jones</td> </tr> <tr> <th>Loan No</th> <td>L-1</td> </tr> <tr> <th>Amount</th> <td>5000</td></tr> </table> </body></html>
  • 31. Table Code with Colspan & Rowspan <html><body> <h4>Cell that spans two columns:</h4> <table border=&quot;4&quot;> <tr> <th>Name</th> <th colspan=&quot;2&quot;>Loan No</th> </tr> <tr> <td>Jones</td> <td>L-1</td> <td>L-2</td> </tr> </table> <h4>Cell that spans two rows:</h4> <table border=&quot;8&quot;> <tr> <th>Name</th> <td>Jones</td></tr><tr> <th rowspan=&quot;2&quot;>Loan No</th> <td>L-1</td></tr><tr> <td>L-2</td></tr></table> </body></html>
  • 32. Table Code with Caption & ColSpacing <html> <body> <table border=&quot;1&quot;> <caption>My Caption</caption> <tr> <td>Milk</td> <td>Tea</td> </tr> <tr> <td></td> <td>Coffee</td> </tr> </table> </body> </html>
  • 33. Cellpadding,Image & Backcolor Code <html><body> <h3>Without cellpadding:</h3> <table border=&quot;2&quot; bgcolor=&quot;green&quot;> <tr> <td>Jones</td> <td>Smith</td></tr> <tr> <td>Hayes</td> <td>Jackson</td></tr></table> <h4>With cellpadding:</h4> <table border=&quot;8&quot; cellpadding=&quot;10&quot; background=&quot;file:///C:/WINDOWS/FeatherTexture.bmp&quot;> <tr> <td>Jones</td> <td>Smith</td></tr> <tr> <td>Hayes</td> <td>Jackson</td></tr></table> </body></html>
  • 34.
  • 35. List Tags <LI> <OL> <UL> <DL> <DT> <DD> <LI> is an empty tag,it is used for representing the list items Ordered list Unordered list Defines a definition list Defines a term (an item) in a definition list Defines a description of a term in a definition list
  • 36.
  • 37. Code & Result of the Unordered List <html><body> <h4>Disc bullets list:</h4> <ul type=&quot;disc&quot;> <li>Jones</li> <li>Smith</li> <li>Hayes</li> <li>Jackson</li></ul> <h4>Circle bullets list:</h4> <ul type=&quot;circle&quot;> <li>Jones</li> <li>Simth</li> <li>Hayes</li> <li>Jackson</li></ul> <h4>Square bullets list:</h4> <ul type=&quot;square&quot;> <li>Jones</li> <li>Smith</li> <li>Hayes</li> <li>Jackson</li></ul> </body></html>
  • 38.
  • 39. Code & Result of the Ordered List <html><body> <h4>Numbered list:</h4> <ol> <li>Jones</li> <li>Smith</li> <li>Hayes</li> <li>Jackson</li></ol> <h4>Letters list:</h4> <ol type=&quot;A&quot;> <li>Jones</li> <li>Smith</li> <li>Hayes</li> <li>Jackson</li></ol> <h4>Roman numbers list:</h4> <ol type=&quot;I&quot;> <li>Jones</li> <li>Smith</li> <li>Hayes</li> <li>Jackson</li></ol> </body></html>
  • 40.
  • 41. Form Tags <form> <input> <text> <textarea> <password> <label> <option> <select> <button> <value> <checkbox> <dropdown box> Defines a form for user input used to create an input field Creates a single line text entry field Defines a text-area (a multi-line text input control) Creates a single line text entry field. And the characters entered are shown as asterisks (*) Defines a label to a control Creates a Radio Button. Defines a selectable list (a drop-down box) Defines a push button attribute of the option element. select or unselect a checkbox A drop-down box is a selectable list
  • 42. Code of the HTML Form <html><body><form> <h1>Create a Internet Mail Account</h1> <p>First Name <input type=&quot;text&quot; name=&quot;T1&quot; size=&quot;30&quot;></p> <p>Last Name <input type=&quot;text&quot; name=&quot;T2&quot; size=&quot;30&quot;></p> <p>Desired Login Name <input type=&quot;text&quot; name=&quot;T3&quot; size=&quot;20&quot;> @mail.com</p> <p>Password <input type=&quot;password&quot; name=&quot;T4&quot; size=&quot;20&quot;></p> <input type=&quot;radio&quot; checked=&quot;checked&quot; name=&quot;sex&quot; value=&quot;male&quot; /> Male</br> <input type=&quot;radio&quot; name=&quot;sex&quot; value=&quot;female&quot; /> Female <p>Birthday <input type=&quot;text&quot; name=&quot;T6&quot; size=&quot;05&quot;> <select size=&quot;1&quot; name=&quot;D2&quot;> <option>-Select One-</option> <option>January</option> <option>February</option> <option>March</option> </select> <input type=&quot;text&quot; name=&quot;T7&quot; size=&quot;10&quot;></p> TypeYourself<textarea rows=&quot;4&quot; name=&quot;S1&quot; cols=&quot;20&quot;></textarea> <br><input type=&quot;submit&quot; value=&quot;Accept&quot; name=&quot;B1&quot;> <input type=&quot;reset“ value=&quot;Cancel&quot; name=&quot;B2&quot;></br> </form></body></html>
  • 43. Result of the Form Code