SlideShare a Scribd company logo
HTML HTML – Hyper Text Markup Language HTML documents describe web pages (Static Web Page) HTML tags are keywords surrounded by angle brackets like <html> HTML tags normally come in pairs like <b> and </b> The first tag in a pair is the start tag (opening tags), the second tag is the end tag(closing tags)
IMPLEMENTATION WHERE WE WRITE CODE : 1.Text Editor  1.Wordpad (In Windows OS) 2.Gedit Text Editor (Ubundu in LINUX) 2.FrontPage or Dreamweaver WHERE WE EXECUTE  : 1.Double Click that HTML File. (or) 2.Right click – Open With Internet Explorer
Simple Code - 1 First Planet First Planet <html> .... </html> describes the web page <body> ..... </body> is the visible page content <html> <body> <h1>First Planet</h1> <h6>First Planet</h6> </body> </html> O/P :
Link  Tag Html Links : Html links are defined with the <a> tag Syntax :   <a href=&quot;http://www.gmil.com&quot;>Gmail</a> Example   :  <html> <body> <a href=&quot;http://www.gmail.com&quot;>Gmail</a> </body> </html> Gmail O/P : If we click this link it goes to gmail account
Image Tag HTML Images : HTML images are defined with the <img> tag. Syntax :  <img src &quot;123.jpg&quot; width=&quot;104&quot; height=&quot;142&quot; />  Example : <html> <body> <img src=&quot;word.jpg&quot; width=&quot;104&quot; height=&quot;142&quot; /> </body> </html> O/P:
HTML RULES HTML Rules (Lines) : The <hr /> tag is used to create an horizontal rule (line). Example: <html><body> <h3>Exnora</h3> <hr /> <h3>Safety Exnora</h3> </body></html> O/P : Exnora Safety Exnora
HTML COMMENTS HTML Comments : Comments can be inserted in the HTML code to make it more readable and understandable. Comments are ignored by the browser and are not displayed. Syntax  :  <!-- some text -> Example : <html><body> <!--It will not be displayed--> <h3>Plant Trees </h3> </body></html> Plant Trees O/P :
HTML TEXT FORMATTING <html><body> <b>Confidence</b><br /> <big>Hardwork</big><br /> <i>Preseverance</i><br /> <code>Samsung CRT</code><br /> This is<sub> subscript</sub><br />  This  is<sup> superscript</sup> </body></html> Some Formatting Tags are 1,b- Bold , 2.i- Italic,  3.code-Computer code,4.sub-Subscript & 5.sup-Superscript Implement it as a Exercise (Practical)
HTML STYLE ATTRIBUTES Tags  Description <center>  Defines centered content  <font>  Defines HTML fonts <s> and <strike>  Defines strikeout text <u>  Defines underlined text Attributes  Description Align  Defines the alignment of text  Bgcolor  Defines the background color Color  Defines the text color
STYLE EXAMPLE <html> <h1 style=&quot;text-align:center&quot;>NATURE</h1> <body style=&quot;background-color:yellow&quot;> <p style=&quot;font-family:Purisa;color:red&quot;>Plant Tree</p> <p style=&quot;font-family:times;color:red&quot;>Save Our Generation</p> <p style=&quot;font-size:40&quot;>Value Our Environment</p> </body> </html> NATURE Plant Tree Save Our Generation Value Our Environment O/P :
HTML TABLES Tables are defined with the <table> tag. A table is divided into rows (with the <tr> tag),  Each row is divided into data cells (with the <td> tag). The letters td  stands for &quot;table data,&quot; which is the content of a data cell. Headings in a table are defined with the <th> tag. <table border=&quot;1&quot;> <tr> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </tr> <tr> <td>row 2, cell 1</td> <td>row 2, cell 2</td></tr> </table>  row1,cell1 row1,cell2 row2,cell1 row2,cell2
TABLE FEATURES 1.Table with a caption : <caption>My Caption</caption> 2.Table cells that span more than one row/column : <th colspan=&quot;2&quot;>Telephone</th> <th rowspan=&quot;2&quot;>Telephone:</th> 3.Cell padding :   <table border=&quot;1&quot;  cellpadding=&quot;10&quot;> 4 . Cell spacing :   <table border=&quot;1&quot;  cellspacing=&quot;10&quot;> 5.Add a background color or a background image to a table :   <table border=&quot;1&quot;  bgcolor=&quot;red&quot;>
HTML LISTS HTML supports ordered, unordered and definition lists. Ordered Lists : An ordered list is also a list of items. The list items are marked with numbers. An ordered list starts with the <ol> tag. Each list item starts with the <li> tag. Unordered Lists : An unordered list is a list of items. The list items are marked with bullets (typically small black circles). An unordered list starts with the <ul> tag. Each list item starts with the <li> tag.
Definition Lists : A definition list is not a list of single items. It is a list of items (terms),  with a description of each item (term). A definition list starts with a <dl> tag (definition list). Each term starts with a <dt> tag (definition term). Each description starts with a <dd> tag (definition description). Unordered List : ThinkPositve Never Depressed Keep Smiling Ordered List : 1.Fail 2.Work Hard 3.Win 4.Teach Definition List : Success Fail First, Happy  Smile Always
HTML FORMS HTML Forms are used to select different kinds of user input. A form is an area that can contain form elements. Form elements are elements that allow the user to enter information like, 1. text fields, 2. textarea fields, 3. drop-down menus,  4.radio buttons, 5. checkboxes, 6. Action Attribute and the Submit Button,etc.
Text Fields: Text fields are used when you want the user to type letters, numbers, etc. in a form. Example : <form> First name: <input type=&quot;text&quot; name=&quot;firstname&quot; /> <br />  Last name:  <input type=&quot;text&quot; name=&quot;lastname&quot; /> </form>  First name : Last name : OUTPUT :
RADIO & CHECK BOX Radio Buttons : <form> <input type=&quot;radio&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 </form>  Checkboxes  : <form> Bike: <input type=&quot;checkbox&quot; name=&quot;vehicle&quot; value=&quot;Bike&quot;/> <br /> Car: <input type=&quot;checkbox&quot; name=&quot;vehicle&quot; value=&quot;Car&quot;/><br /> </form>  Male Female Bike Car
Form Action Attribute Action Attribute and the Submit Button : When the user clicks on the &quot;Submit&quot; button, the content of the form is  sent to the server.  The form's action attribute defines the name of the file to send the  content to. It depends on PHP File. <form name=&quot;input&quot; action=&quot;html_form_submit.asp&quot; method=&quot;get&quot;> Username:<input type=&quot;text&quot; name=&quot;user&quot;/> <input type=&quot;submit&quot; value=&quot;Submit&quot; /> </form>  Submit Username :
HTML LAYOUT  A part of this page is formatted with two columns, like a newspaper page. The trick is to use a table without borders, and maybe a little extra cell-  padding. No matter how much text you add to this page, it will stay inside its  column borders.
<table border=&quot;0&quot; width=&quot;100%&quot; cellpadding=&quot;10&quot;> <tr> <td width=&quot;50%&quot; valign=&quot;top&quot;> This is the Time to save Our Earth to Our Future Generation.So  everybody shoud be a Volunteer.  </td> <td width=&quot;50%&quot; valign=&quot;top&quot;> For smooth relationship between to us & nature We should do some  activities to Preserve our Earth. </td> </tr>  </table> This is the Time to save Our Earth to Our Future Generation.So  everybody shoud be a Volunteer.  For smooth relationship between to us & nature We should do some  activities to Preserve our Earth.
HTML FRAMES With frames, you can display more than one HTML document in the  same browser window. Each HTML document is called a frame, and each frame is independent  of the others. The Frameset Tag * The <frameset> tag defines how to divide the window into frames * Each frameset defines a set of rows or columns * The values of the rows/columns indicate the amount of screen area each row/column will occupy
VERTICAL & HORIZONTAL FRAMESET <html> <frameset cols=&quot;30%,40%,30%&quot;> <frame src=&quot;frame_a.htm&quot;> <frame src=&quot;frame_b.htm&quot;> <frame src=&quot;frame_c.htm&quot;> </frameset> </html> <html> <frameset rows=&quot;30%,40%,30> <frame src=&quot;frame_a.htm&quot;> <frame src=&quot;frame_b.htm&quot;> <frame src=&quot;frame_c.htm&quot;> </frameset> </html>
Ad

More Related Content

What's hot (20)

HTML Forms
HTML FormsHTML Forms
HTML Forms
Ravinder Kamboj
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
vikasgaur31
 
Cascading Style Sheet (CSS)
Cascading Style Sheet (CSS)Cascading Style Sheet (CSS)
Cascading Style Sheet (CSS)
AakankshaR
 
Html coding
Html codingHtml coding
Html coding
Briana VanBuskirk
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
vikasgaur31
 
HTML (Web) basics for a beginner
HTML (Web) basics for a beginnerHTML (Web) basics for a beginner
HTML (Web) basics for a beginner
Jayapal Reddy Nimmakayala
 
Basic html structure
Basic html structureBasic html structure
Basic html structure
Jhaun Paul Enriquez
 
Eye catching HTML BASICS tips: Learn easily
Eye catching HTML BASICS tips: Learn easilyEye catching HTML BASICS tips: Learn easily
Eye catching HTML BASICS tips: Learn easily
shabab shihan
 
Html
HtmlHtml
Html
irshadahamed
 
Web Development using HTML & CSS
Web Development using HTML & CSSWeb Development using HTML & CSS
Web Development using HTML & CSS
Shashank Skills Academy
 
PPT on Basic HTML Tags
PPT on Basic HTML TagsPPT on Basic HTML Tags
PPT on Basic HTML Tags
VinitaPaliwal1
 
Html ppt computer
Html ppt computerHtml ppt computer
Html ppt computer
Anmol Pant
 
Title, heading and paragraph tags
Title, heading and paragraph tagsTitle, heading and paragraph tags
Title, heading and paragraph tags
Sara Corpuz
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
WordPress Memphis
 
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)
Webtech Learning
 
Complete Lecture on Css presentation
Complete Lecture on Css presentation Complete Lecture on Css presentation
Complete Lecture on Css presentation
Salman Memon
 
Tags in html
Tags in htmlTags in html
Tags in html
Balakumaran Arunachalam
 
CSS
CSSCSS
CSS
People Strategists
 
HTML Text formatting tags
HTML Text formatting tagsHTML Text formatting tags
HTML Text formatting tags
Himanshu Pathak
 
Lecture 2 introduction to html
Lecture 2  introduction to htmlLecture 2  introduction to html
Lecture 2 introduction to html
palhaftab
 

Viewers also liked (6)

Html for beginners
Html for beginnersHtml for beginners
Html for beginners
Florian Letsch
 
Up to Speed on HTML 5 and CSS 3
Up to Speed on HTML 5 and CSS 3Up to Speed on HTML 5 and CSS 3
Up to Speed on HTML 5 and CSS 3
M. Jackson Wilkinson
 
CSS ppt
CSS pptCSS ppt
CSS ppt
Sanmuga Nathan
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
Amit Tyagi
 
HTML presentation for beginners
HTML presentation for beginnersHTML presentation for beginners
HTML presentation for beginners
jeroenvdmeer
 
Html / CSS Presentation
Html / CSS PresentationHtml / CSS Presentation
Html / CSS Presentation
Shawn Calvert
 
Ad

Similar to Html Ppt (20)

Tables and Forms in HTML
Tables and Forms in HTMLTables and Forms in HTML
Tables and Forms in HTML
Doncho Minkov
 
Html tutorial
Html tutorialHtml tutorial
Html tutorial
mohamed ashraf
 
AK html
AK  htmlAK  html
AK html
gauravashq
 
Html intro
Html introHtml intro
Html intro
kalaivani.g
 
Html intro
Html introHtml intro
Html intro
kalaivani.g
 
1-06: More HTML Elements
1-06: More HTML Elements1-06: More HTML Elements
1-06: More HTML Elements
apnwebdev
 
1 06-more html-elements
1 06-more html-elements1 06-more html-elements
1 06-more html-elements
apnwebdev
 
Html
HtmlHtml
Html
charu gupta
 
HTML & CSS
HTML & CSSHTML & CSS
HTML & CSS
jlinabary
 
HTML Fundamentals
HTML FundamentalsHTML Fundamentals
HTML Fundamentals
Doncho Minkov
 
Htmltag.ppt
Htmltag.pptHtmltag.ppt
Htmltag.ppt
anandha ganesh
 
Html basic
Html basicHtml basic
Html basic
Charitha Bandara
 
Html
HtmlHtml
Html
jayakarthi
 
Html
HtmlHtml
Html
jayakarthi
 
Htmltag.ppt
Htmltag.pptHtmltag.ppt
Htmltag.ppt
MAGNA COLLEGE OF ENGINEERING
 
Lecture 2 - Comm Lab: Web @ ITP
Lecture 2 - Comm Lab: Web @ ITPLecture 2 - Comm Lab: Web @ ITP
Lecture 2 - Comm Lab: Web @ ITP
yucefmerhi
 
Cascading Style Sheets
Cascading Style SheetsCascading Style Sheets
Cascading Style Sheets
Jerome Locson
 
Understanding THML
Understanding THMLUnderstanding THML
Understanding THML
Hinopak Motors Limited
 
KMUTNB - Internet Programming 3/7
KMUTNB - Internet Programming 3/7KMUTNB - Internet Programming 3/7
KMUTNB - Internet Programming 3/7
phuphax
 
Html part2
Html part2Html part2
Html part2
suba_sqa
 
Ad

Recently uploaded (20)

The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdfThe Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
Abi john
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
 
What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...
Vishnu Singh Chundawat
 
Technology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data AnalyticsTechnology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data Analytics
InData Labs
 
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes
 
Automation Hour 1/28/2022: Capture User Feedback from Anywhere
Automation Hour 1/28/2022: Capture User Feedback from AnywhereAutomation Hour 1/28/2022: Capture User Feedback from Anywhere
Automation Hour 1/28/2022: Capture User Feedback from Anywhere
Lynda Kane
 
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdfComplete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Software Company
 
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
SOFTTECHHUB
 
Hands On: Create a Lightning Aura Component with force:RecordData
Hands On: Create a Lightning Aura Component with force:RecordDataHands On: Create a Lightning Aura Component with force:RecordData
Hands On: Create a Lightning Aura Component with force:RecordData
Lynda Kane
 
"PHP and MySQL CRUD Operations for Student Management System"
"PHP and MySQL CRUD Operations for Student Management System""PHP and MySQL CRUD Operations for Student Management System"
"PHP and MySQL CRUD Operations for Student Management System"
Jainul Musani
 
Buckeye Dreamin' 2023: De-fogging Debug Logs
Buckeye Dreamin' 2023: De-fogging Debug LogsBuckeye Dreamin' 2023: De-fogging Debug Logs
Buckeye Dreamin' 2023: De-fogging Debug Logs
Lynda Kane
 
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager APIUiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPathCommunity
 
Network Security. Different aspects of Network Security.
Network Security. Different aspects of Network Security.Network Security. Different aspects of Network Security.
Network Security. Different aspects of Network Security.
gregtap1
 
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Impelsys Inc.
 
Buckeye Dreamin 2024: Assessing and Resolving Technical Debt
Buckeye Dreamin 2024: Assessing and Resolving Technical DebtBuckeye Dreamin 2024: Assessing and Resolving Technical Debt
Buckeye Dreamin 2024: Assessing and Resolving Technical Debt
Lynda Kane
 
Linux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdfLinux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdf
RHCSA Guru
 
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In France
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In FranceManifest Pre-Seed Update | A Humanoid OEM Deeptech In France
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In France
chb3
 
Cyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of securityCyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of security
riccardosl1
 
Splunk Security Update | Public Sector Summit Germany 2025
Splunk Security Update | Public Sector Summit Germany 2025Splunk Security Update | Public Sector Summit Germany 2025
Splunk Security Update | Public Sector Summit Germany 2025
Splunk
 
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdfThe Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
Abi john
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
 
What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...
Vishnu Singh Chundawat
 
Technology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data AnalyticsTechnology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data Analytics
InData Labs
 
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes
 
Automation Hour 1/28/2022: Capture User Feedback from Anywhere
Automation Hour 1/28/2022: Capture User Feedback from AnywhereAutomation Hour 1/28/2022: Capture User Feedback from Anywhere
Automation Hour 1/28/2022: Capture User Feedback from Anywhere
Lynda Kane
 
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdfComplete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Software Company
 
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
SOFTTECHHUB
 
Hands On: Create a Lightning Aura Component with force:RecordData
Hands On: Create a Lightning Aura Component with force:RecordDataHands On: Create a Lightning Aura Component with force:RecordData
Hands On: Create a Lightning Aura Component with force:RecordData
Lynda Kane
 
"PHP and MySQL CRUD Operations for Student Management System"
"PHP and MySQL CRUD Operations for Student Management System""PHP and MySQL CRUD Operations for Student Management System"
"PHP and MySQL CRUD Operations for Student Management System"
Jainul Musani
 
Buckeye Dreamin' 2023: De-fogging Debug Logs
Buckeye Dreamin' 2023: De-fogging Debug LogsBuckeye Dreamin' 2023: De-fogging Debug Logs
Buckeye Dreamin' 2023: De-fogging Debug Logs
Lynda Kane
 
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager APIUiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPathCommunity
 
Network Security. Different aspects of Network Security.
Network Security. Different aspects of Network Security.Network Security. Different aspects of Network Security.
Network Security. Different aspects of Network Security.
gregtap1
 
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Impelsys Inc.
 
Buckeye Dreamin 2024: Assessing and Resolving Technical Debt
Buckeye Dreamin 2024: Assessing and Resolving Technical DebtBuckeye Dreamin 2024: Assessing and Resolving Technical Debt
Buckeye Dreamin 2024: Assessing and Resolving Technical Debt
Lynda Kane
 
Linux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdfLinux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdf
RHCSA Guru
 
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In France
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In FranceManifest Pre-Seed Update | A Humanoid OEM Deeptech In France
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In France
chb3
 
Cyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of securityCyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of security
riccardosl1
 
Splunk Security Update | Public Sector Summit Germany 2025
Splunk Security Update | Public Sector Summit Germany 2025Splunk Security Update | Public Sector Summit Germany 2025
Splunk Security Update | Public Sector Summit Germany 2025
Splunk
 

Html Ppt

  • 1. HTML HTML – Hyper Text Markup Language HTML documents describe web pages (Static Web Page) HTML tags are keywords surrounded by angle brackets like <html> HTML tags normally come in pairs like <b> and </b> The first tag in a pair is the start tag (opening tags), the second tag is the end tag(closing tags)
  • 2. IMPLEMENTATION WHERE WE WRITE CODE : 1.Text Editor 1.Wordpad (In Windows OS) 2.Gedit Text Editor (Ubundu in LINUX) 2.FrontPage or Dreamweaver WHERE WE EXECUTE : 1.Double Click that HTML File. (or) 2.Right click – Open With Internet Explorer
  • 3. Simple Code - 1 First Planet First Planet <html> .... </html> describes the web page <body> ..... </body> is the visible page content <html> <body> <h1>First Planet</h1> <h6>First Planet</h6> </body> </html> O/P :
  • 4. Link Tag Html Links : Html links are defined with the <a> tag Syntax : <a href=&quot;http://www.gmil.com&quot;>Gmail</a> Example : <html> <body> <a href=&quot;http://www.gmail.com&quot;>Gmail</a> </body> </html> Gmail O/P : If we click this link it goes to gmail account
  • 5. Image Tag HTML Images : HTML images are defined with the <img> tag. Syntax : <img src &quot;123.jpg&quot; width=&quot;104&quot; height=&quot;142&quot; /> Example : <html> <body> <img src=&quot;word.jpg&quot; width=&quot;104&quot; height=&quot;142&quot; /> </body> </html> O/P:
  • 6. HTML RULES HTML Rules (Lines) : The <hr /> tag is used to create an horizontal rule (line). Example: <html><body> <h3>Exnora</h3> <hr /> <h3>Safety Exnora</h3> </body></html> O/P : Exnora Safety Exnora
  • 7. HTML COMMENTS HTML Comments : Comments can be inserted in the HTML code to make it more readable and understandable. Comments are ignored by the browser and are not displayed. Syntax : <!-- some text -> Example : <html><body> <!--It will not be displayed--> <h3>Plant Trees </h3> </body></html> Plant Trees O/P :
  • 8. HTML TEXT FORMATTING <html><body> <b>Confidence</b><br /> <big>Hardwork</big><br /> <i>Preseverance</i><br /> <code>Samsung CRT</code><br /> This is<sub> subscript</sub><br /> This is<sup> superscript</sup> </body></html> Some Formatting Tags are 1,b- Bold , 2.i- Italic, 3.code-Computer code,4.sub-Subscript & 5.sup-Superscript Implement it as a Exercise (Practical)
  • 9. HTML STYLE ATTRIBUTES Tags Description <center> Defines centered content <font> Defines HTML fonts <s> and <strike> Defines strikeout text <u> Defines underlined text Attributes Description Align Defines the alignment of text Bgcolor Defines the background color Color Defines the text color
  • 10. STYLE EXAMPLE <html> <h1 style=&quot;text-align:center&quot;>NATURE</h1> <body style=&quot;background-color:yellow&quot;> <p style=&quot;font-family:Purisa;color:red&quot;>Plant Tree</p> <p style=&quot;font-family:times;color:red&quot;>Save Our Generation</p> <p style=&quot;font-size:40&quot;>Value Our Environment</p> </body> </html> NATURE Plant Tree Save Our Generation Value Our Environment O/P :
  • 11. HTML TABLES Tables are defined with the <table> tag. A table is divided into rows (with the <tr> tag), Each row is divided into data cells (with the <td> tag). The letters td stands for &quot;table data,&quot; which is the content of a data cell. Headings in a table are defined with the <th> tag. <table border=&quot;1&quot;> <tr> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </tr> <tr> <td>row 2, cell 1</td> <td>row 2, cell 2</td></tr> </table> row1,cell1 row1,cell2 row2,cell1 row2,cell2
  • 12. TABLE FEATURES 1.Table with a caption : <caption>My Caption</caption> 2.Table cells that span more than one row/column : <th colspan=&quot;2&quot;>Telephone</th> <th rowspan=&quot;2&quot;>Telephone:</th> 3.Cell padding : <table border=&quot;1&quot; cellpadding=&quot;10&quot;> 4 . Cell spacing : <table border=&quot;1&quot; cellspacing=&quot;10&quot;> 5.Add a background color or a background image to a table : <table border=&quot;1&quot; bgcolor=&quot;red&quot;>
  • 13. HTML LISTS HTML supports ordered, unordered and definition lists. Ordered Lists : An ordered list is also a list of items. The list items are marked with numbers. An ordered list starts with the <ol> tag. Each list item starts with the <li> tag. Unordered Lists : An unordered list is a list of items. The list items are marked with bullets (typically small black circles). An unordered list starts with the <ul> tag. Each list item starts with the <li> tag.
  • 14. Definition Lists : A definition list is not a list of single items. It is a list of items (terms), with a description of each item (term). A definition list starts with a <dl> tag (definition list). Each term starts with a <dt> tag (definition term). Each description starts with a <dd> tag (definition description). Unordered List : ThinkPositve Never Depressed Keep Smiling Ordered List : 1.Fail 2.Work Hard 3.Win 4.Teach Definition List : Success Fail First, Happy Smile Always
  • 15. HTML FORMS HTML Forms are used to select different kinds of user input. A form is an area that can contain form elements. Form elements are elements that allow the user to enter information like, 1. text fields, 2. textarea fields, 3. drop-down menus, 4.radio buttons, 5. checkboxes, 6. Action Attribute and the Submit Button,etc.
  • 16. Text Fields: Text fields are used when you want the user to type letters, numbers, etc. in a form. Example : <form> First name: <input type=&quot;text&quot; name=&quot;firstname&quot; /> <br /> Last name: <input type=&quot;text&quot; name=&quot;lastname&quot; /> </form> First name : Last name : OUTPUT :
  • 17. RADIO & CHECK BOX Radio Buttons : <form> <input type=&quot;radio&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 </form> Checkboxes : <form> Bike: <input type=&quot;checkbox&quot; name=&quot;vehicle&quot; value=&quot;Bike&quot;/> <br /> Car: <input type=&quot;checkbox&quot; name=&quot;vehicle&quot; value=&quot;Car&quot;/><br /> </form> Male Female Bike Car
  • 18. Form Action Attribute Action Attribute and the Submit Button : When the user clicks on the &quot;Submit&quot; button, the content of the form is sent to the server. The form's action attribute defines the name of the file to send the content to. It depends on PHP File. <form name=&quot;input&quot; action=&quot;html_form_submit.asp&quot; method=&quot;get&quot;> Username:<input type=&quot;text&quot; name=&quot;user&quot;/> <input type=&quot;submit&quot; value=&quot;Submit&quot; /> </form> Submit Username :
  • 19. HTML LAYOUT A part of this page is formatted with two columns, like a newspaper page. The trick is to use a table without borders, and maybe a little extra cell- padding. No matter how much text you add to this page, it will stay inside its column borders.
  • 20. <table border=&quot;0&quot; width=&quot;100%&quot; cellpadding=&quot;10&quot;> <tr> <td width=&quot;50%&quot; valign=&quot;top&quot;> This is the Time to save Our Earth to Our Future Generation.So everybody shoud be a Volunteer. </td> <td width=&quot;50%&quot; valign=&quot;top&quot;> For smooth relationship between to us & nature We should do some activities to Preserve our Earth. </td> </tr> </table> This is the Time to save Our Earth to Our Future Generation.So everybody shoud be a Volunteer. For smooth relationship between to us & nature We should do some activities to Preserve our Earth.
  • 21. HTML FRAMES With frames, you can display more than one HTML document in the same browser window. Each HTML document is called a frame, and each frame is independent of the others. The Frameset Tag * The <frameset> tag defines how to divide the window into frames * Each frameset defines a set of rows or columns * The values of the rows/columns indicate the amount of screen area each row/column will occupy
  • 22. VERTICAL & HORIZONTAL FRAMESET <html> <frameset cols=&quot;30%,40%,30%&quot;> <frame src=&quot;frame_a.htm&quot;> <frame src=&quot;frame_b.htm&quot;> <frame src=&quot;frame_c.htm&quot;> </frameset> </html> <html> <frameset rows=&quot;30%,40%,30> <frame src=&quot;frame_a.htm&quot;> <frame src=&quot;frame_b.htm&quot;> <frame src=&quot;frame_c.htm&quot;> </frameset> </html>