SlideShare a Scribd company logo
1 of 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

More Related Content

What's hot (20)

Learning HTML
Learning HTMLLearning HTML
Learning HTML
 
Html images syntax
Html images syntaxHtml images syntax
Html images syntax
 
Html frames
Html framesHtml frames
Html frames
 
Html coding
Html codingHtml coding
Html coding
 
Css types internal, external and inline (1)
Css types internal, external and inline (1)Css types internal, external and inline (1)
Css types internal, external and inline (1)
 
HTML (Web) basics for a beginner
HTML (Web) basics for a beginnerHTML (Web) basics for a beginner
HTML (Web) basics for a beginner
 
HTML Tags
HTML TagsHTML Tags
HTML Tags
 
html-table
html-tablehtml-table
html-table
 
HTML Forms
HTML FormsHTML Forms
HTML Forms
 
Xml
XmlXml
Xml
 
HTML: Tables and Forms
HTML: Tables and FormsHTML: Tables and Forms
HTML: Tables and Forms
 
Lecture 2 introduction to html
Lecture 2  introduction to htmlLecture 2  introduction to html
Lecture 2 introduction to html
 
Html text and formatting
Html text and formattingHtml text and formatting
Html text and formatting
 
Html table tags
Html table tagsHtml table tags
Html table tags
 
Html
HtmlHtml
Html
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
 
Intro to html
Intro to htmlIntro to html
Intro to html
 
Introduction to Html5
Introduction to Html5Introduction to Html5
Introduction to Html5
 
Images and Tables in HTML
Images and Tables in HTMLImages and Tables in HTML
Images and Tables in HTML
 

Viewers also liked

Introduction to html course digital markerters
Introduction to html course digital markertersIntroduction to html course digital markerters
Introduction to html course digital markertersSEO SKills
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSSAmit Tyagi
 
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
 

Viewers also liked (10)

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
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
 
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
 

Similar to 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
 
Html
HtmlHtml
Html
 
Understanding html
Understanding htmlUnderstanding html
Understanding html
 

Recently uploaded

2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
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
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
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
 
🐬 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
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
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
 

Recently uploaded (20)

2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
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
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
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
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
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
 

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