SlideShare a Scribd company logo
1 of 37
Welcome HTML Training
Teach By :Thansare
Level: Beginner
DOC: https://www.slideshare.net/thansare
https://plus.google.com/u/0/102131634838526305706
Elements
 An HTML element usually consists of a start tag and end tag, with the content inserted in between:
<tagname>Content goes here...</tagname>
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
Attributes
 All HTML elements can have attributes
 Attributes provide additional information about an element
 Attributes are always specified in the start tag
 Attributes usually come in name/value pairs like: name="value"
 Type of Attributes Lange Attribute, title Attribute, href Attributes, Size Attribute, alt Attribute, Quote
Attribute values
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
Lang Attribute
 The language of the document can be declared in the <html> tag.
 The language is declared with the lang attribute.
 Declaring a language is important for accessibility applications (screen readers) and search engines
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
Title Attribute
 a title attribute is added to the <p> element. The value of the title attribute will be displayed as a
tooltip when you mouse over the paragraph
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
Href Attribute
 HTML links are defined with the <a> tag. The link address is specified in the href attribute
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
Size Attribute
 HTML images are defined with the <img> tag.
 The filename of the source (src), and the size of the image (width and height) are all provided as
attributes
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
Alt Attribute
 The alt attribute specifies an alternative text to be used, when an image cannot be displayed.
 The value of the attribute can be read by screen readers. This way, someone "listening" to the webpage,
e.g. a blind person, can "hear" the element.
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
Quote Attribute Values
 Daf
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
HTML Headings
 Headings are defined with the <h1> to <h6> tags.
 <h1> defines the most important heading. <h6> defines the least important heading
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
HTML Horizontal Rules
 The <hr> tag defines a thematic break in an HTML page, and is most often displayed as a horizontal
rule.
 The <hr> element is used to separate content (or define a change) in an HTML page
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
HTML<head>Element
 he HTML <head> element has nothing to do with HTML headings.
 The <head> element is a container for metadata. HTML metadata is data about the HTML document.
Metadata is not displayed.
 The <head> element is placed between the <html> tag and the <body> tag:
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
HTML Paragraphs
 The HTML <p> element defines a paragraph
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
HTML <pre>Element
 The HTML <pre> element defines preformatted text.
 The text inside a <pre> element is displayed in a fixed-width font (usually Courier), and it preserves both
spaces and line breaks
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
HTML Style
 Setting the style of an HTML element, can be done with the style attribute.
 The HTML style attribute has the following syntax <tagname style="property:value;">
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
HTML Background Color
 The background-color property defines the background color for an HTML element.
 This example sets the background color for a page to powderblue
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
HTML Fonts
 The font-family property defines the font to be used for an HTML element
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
HTML Formatting Elements
 n the previous chapter, you learned about the HTML style attribute.
 HTML also defines special elements for defining text with a special meaning.
 HTML uses elements like <b> and <i> for formatting output, like bold or italic text
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
HTML Quotations
 The HTML <q> element defines a short quotation.
Browsers usually insert quotation marks around the <q> element
 The HTML <blockquote> element defines a section that is quoted from another source.
Browsers usually indent <blockquote> elements
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
 The HTML <abbr> element defines an abbreviation or an acronym.
 Marking abbreviations can give useful information to browsers, translation systems and search-engines
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
 The HTML <address> element defines contact information (author/owner) of a document or an article.
 The <address> element is usually displayed in italic. Most browsers will add a line break before and after the
element.
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
 The HTML <cite> element defines the title of a work.
 Browsers usually display <cite> elements in italic
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
 The HTML <bdo> element defines bi-directional override.
 The <bdo> element is used to override the current text direction
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
HTML Comments
 Comment tags are used to insert comments in the HTML source code
 Notice that there is an exclamation point (!) in the opening tag, but not in the closing tag.
 Conditional comments defines some HTML tags to be executed by Internet Explorer only
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
HTML Colors
 In HTML, a color can be specified by using a color name, an RGB value, or a HEX value
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
HTML CSS
 CSS stands for Cascading Style Sheets.
 CSS describes how HTML elements are to be displayed on screen, paper, or in other media.
 CSS saves a lot of work. It can control the layout of multiple web pages all at once.
 CSS can be added to HTML elements in 3 ways:
 Inline - by using the style attribute in HTML elements
 Internal - by using a <style> element in the <head> section
 External - by using an external CSS file
HTML Links
 Links are found in nearly all web pages. Links allow users to click their way from page to page.
 Type of links: Hyper links,Local Links,links color,Image as a Link,………………
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
HTML Images
 In HTML, images are defined with the <img> tag.
 The <img> tag is empty, it contains attributes only, and does not have a closing tag.
 The src attribute specifies the URL (web address) of the image
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
HTML Tables
 An HTML table is defined with the <table> tag.
 Each table row is defined with the <tr> tag. A table header is defined with the <th> tag. By default, table
headings are bold and centered. A table data/cell is defined with the <td> tag
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
HTML List
 List in HTML have two types are Unordered list and Ordered list
 Type of style : disc,circle,square,noune,
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
 An ordered list starts with the <ol> tag. Each list item starts with the <li> tag.
 The list items will be marked with numbers by default
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
HTML Classes
 he HTML class attribute makes it possible to define equal styles for elements with the same class name.
 Here we have three <div> elements that point to the same class name
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
HTML Iframes
 An iframe is used to display a web page within a web page.
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
HTML Media(Video)
 Multimedia on the web is sound, music, videos, movies, and animations.
HTML Media(Audio)
 MP3 is the newest format for compressed recorded music. The term MP3 has become synonymous with
digital music.
 If your website is about recorded music, MP3 is the choice.
HTML Video Code
 Before HTML5, a video could only be played in a browser with a plug-in (like flash).
 The HTML5 <video> element specifies a standard way to embed a video in a web page
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
 Df
https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber

More Related Content

What's hot (20)

HTML Introduction
HTML IntroductionHTML Introduction
HTML Introduction
 
Html
HtmlHtml
Html
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Html
HtmlHtml
Html
 
Web designing using html
Web designing using htmlWeb designing using html
Web designing using html
 
Html Slide Part-1
Html Slide Part-1Html Slide Part-1
Html Slide Part-1
 
Basic html structure
Basic html structureBasic html structure
Basic html structure
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
1. HTML
1. HTML1. HTML
1. HTML
 
HTML
HTMLHTML
HTML
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
HTML
HTMLHTML
HTML
 
Html presentation
Html presentationHtml presentation
Html 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
 
Web Page Designing
Web Page DesigningWeb Page Designing
Web Page Designing
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
 
PPT on Basic HTML Tags
PPT on Basic HTML TagsPPT on Basic HTML Tags
PPT on Basic HTML Tags
 
Html presentation
Html presentationHtml presentation
Html presentation
 
Html basic
Html basicHtml basic
Html basic
 
Learn html Basics
Learn html BasicsLearn html Basics
Learn html Basics
 

Similar to Html training part1

Web_Devp_HTML_CSS00jfhfghhdf0000000.pptx
Web_Devp_HTML_CSS00jfhfghhdf0000000.pptxWeb_Devp_HTML_CSS00jfhfghhdf0000000.pptx
Web_Devp_HTML_CSS00jfhfghhdf0000000.pptxgauravpurola
 
HTML Training Part1
HTML Training Part1HTML Training Part1
HTML Training Part1than sare
 
Introduction to HTML- Week 3- HTMLSyntax
Introduction to HTML- Week 3- HTMLSyntaxIntroduction to HTML- Week 3- HTMLSyntax
Introduction to HTML- Week 3- HTMLSyntaxMohammadRafsunIslam
 
HTML 5 Topic 2
HTML 5 Topic 2HTML 5 Topic 2
HTML 5 Topic 2Juvywen
 
HTML Introduction
HTML IntroductionHTML Introduction
HTML Introductioneceklu
 
html complete notes
html complete noteshtml complete notes
html complete notesonactiontv
 
html compete notes basic to advanced
html compete notes basic to advancedhtml compete notes basic to advanced
html compete notes basic to advancedvirtualworld14
 
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdf
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdfHSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdf
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdfAAFREEN SHAIKH
 
Html tutorials by www.dmdiploma.com
Html tutorials by www.dmdiploma.comHtml tutorials by www.dmdiploma.com
Html tutorials by www.dmdiploma.comShwetaAggarwal56
 

Similar to Html training part1 (20)

HTML.pptx
HTML.pptxHTML.pptx
HTML.pptx
 
Html Workshop
Html WorkshopHtml Workshop
Html Workshop
 
Web_Devp_HTML_CSS00jfhfghhdf0000000.pptx
Web_Devp_HTML_CSS00jfhfghhdf0000000.pptxWeb_Devp_HTML_CSS00jfhfghhdf0000000.pptx
Web_Devp_HTML_CSS00jfhfghhdf0000000.pptx
 
HTML Training Part1
HTML Training Part1HTML Training Part1
HTML Training Part1
 
Intodcution to Html
Intodcution to HtmlIntodcution to Html
Intodcution to Html
 
Introduction to Html
Introduction to HtmlIntroduction to Html
Introduction to Html
 
Web technology
Web technologyWeb technology
Web technology
 
Introduction to HTML- Week 3- HTMLSyntax
Introduction to HTML- Week 3- HTMLSyntaxIntroduction to HTML- Week 3- HTMLSyntax
Introduction to HTML- Week 3- HTMLSyntax
 
Html tutorial
Html tutorialHtml tutorial
Html tutorial
 
Html
HtmlHtml
Html
 
HTML/HTML5
HTML/HTML5HTML/HTML5
HTML/HTML5
 
Introduction to HTML.pptx
Introduction to HTML.pptxIntroduction to HTML.pptx
Introduction to HTML.pptx
 
Html5 css3
Html5 css3Html5 css3
Html5 css3
 
Html presentation
Html presentationHtml presentation
Html presentation
 
HTML 5 Topic 2
HTML 5 Topic 2HTML 5 Topic 2
HTML 5 Topic 2
 
HTML Introduction
HTML IntroductionHTML Introduction
HTML Introduction
 
html complete notes
html complete noteshtml complete notes
html complete notes
 
html compete notes basic to advanced
html compete notes basic to advancedhtml compete notes basic to advanced
html compete notes basic to advanced
 
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdf
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdfHSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdf
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdf
 
Html tutorials by www.dmdiploma.com
Html tutorials by www.dmdiploma.comHtml tutorials by www.dmdiploma.com
Html tutorials by www.dmdiploma.com
 

More from than sare

Spring review_for Semester II of Year 4
Spring review_for Semester II of Year 4Spring review_for Semester II of Year 4
Spring review_for Semester II of Year 4than sare
 
Project Management_Review_2018
Project Management_Review_2018Project Management_Review_2018
Project Management_Review_2018than sare
 
Android review_for final Semester II of Year4
Android review_for final Semester II of Year4Android review_for final Semester II of Year4
Android review_for final Semester II of Year4than sare
 
Importain questions e_commerce_preview questions
Importain questions e_commerce_preview questionsImportain questions e_commerce_preview questions
Importain questions e_commerce_preview questionsthan sare
 
E commerce preview questions23 jul-2018
E commerce preview questions23 jul-2018E commerce preview questions23 jul-2018
E commerce preview questions23 jul-2018than sare
 
Physic grade-12
Physic grade-12Physic grade-12
Physic grade-12than sare
 
Business plan
Business planBusiness plan
Business planthan sare
 
Share point review qustions
Share point review qustionsShare point review qustions
Share point review qustionsthan sare
 
Share point answer the question
Share point answer the questionShare point answer the question
Share point answer the questionthan sare
 
Judging rubric
Judging rubricJudging rubric
Judging rubricthan sare
 
Smartphone v ideo editing manual-ios(Tech By Ms.THAN Sare)
Smartphone v ideo  editing manual-ios(Tech By Ms.THAN Sare)Smartphone v ideo  editing manual-ios(Tech By Ms.THAN Sare)
Smartphone v ideo editing manual-ios(Tech By Ms.THAN Sare)than sare
 
Database(db sql) review
Database(db sql) reviewDatabase(db sql) review
Database(db sql) reviewthan sare
 
Mid term &amp; final- preparation- student-review(Oracle)
Mid term &amp; final- preparation- student-review(Oracle)Mid term &amp; final- preparation- student-review(Oracle)
Mid term &amp; final- preparation- student-review(Oracle)than sare
 
Answer ado.net pre-exam2018
Answer ado.net pre-exam2018Answer ado.net pre-exam2018
Answer ado.net pre-exam2018than sare
 
Review oop and ood
Review oop and oodReview oop and ood
Review oop and oodthan sare
 
Technovation week6 planning_yourcode
Technovation week6 planning_yourcodeTechnovation week6 planning_yourcode
Technovation week6 planning_yourcodethan sare
 
Sen sors(technovation) week6_thansare
Sen sors(technovation) week6_thansareSen sors(technovation) week6_thansare
Sen sors(technovation) week6_thansarethan sare
 
Week5(technovation)-Teach by Mr.than Sare
Week5(technovation)-Teach by Mr.than SareWeek5(technovation)-Teach by Mr.than Sare
Week5(technovation)-Teach by Mr.than Sarethan sare
 
App inventor week4(technovation)
App inventor week4(technovation)App inventor week4(technovation)
App inventor week4(technovation)than sare
 

More from than sare (20)

Spring review_for Semester II of Year 4
Spring review_for Semester II of Year 4Spring review_for Semester II of Year 4
Spring review_for Semester II of Year 4
 
Project Management_Review_2018
Project Management_Review_2018Project Management_Review_2018
Project Management_Review_2018
 
Android review_for final Semester II of Year4
Android review_for final Semester II of Year4Android review_for final Semester II of Year4
Android review_for final Semester II of Year4
 
Importain questions e_commerce_preview questions
Importain questions e_commerce_preview questionsImportain questions e_commerce_preview questions
Importain questions e_commerce_preview questions
 
E commerce preview questions23 jul-2018
E commerce preview questions23 jul-2018E commerce preview questions23 jul-2018
E commerce preview questions23 jul-2018
 
Physic 12-2
Physic 12-2Physic 12-2
Physic 12-2
 
Physic grade-12
Physic grade-12Physic grade-12
Physic grade-12
 
Business plan
Business planBusiness plan
Business plan
 
Share point review qustions
Share point review qustionsShare point review qustions
Share point review qustions
 
Share point answer the question
Share point answer the questionShare point answer the question
Share point answer the question
 
Judging rubric
Judging rubricJudging rubric
Judging rubric
 
Smartphone v ideo editing manual-ios(Tech By Ms.THAN Sare)
Smartphone v ideo  editing manual-ios(Tech By Ms.THAN Sare)Smartphone v ideo  editing manual-ios(Tech By Ms.THAN Sare)
Smartphone v ideo editing manual-ios(Tech By Ms.THAN Sare)
 
Database(db sql) review
Database(db sql) reviewDatabase(db sql) review
Database(db sql) review
 
Mid term &amp; final- preparation- student-review(Oracle)
Mid term &amp; final- preparation- student-review(Oracle)Mid term &amp; final- preparation- student-review(Oracle)
Mid term &amp; final- preparation- student-review(Oracle)
 
Answer ado.net pre-exam2018
Answer ado.net pre-exam2018Answer ado.net pre-exam2018
Answer ado.net pre-exam2018
 
Review oop and ood
Review oop and oodReview oop and ood
Review oop and ood
 
Technovation week6 planning_yourcode
Technovation week6 planning_yourcodeTechnovation week6 planning_yourcode
Technovation week6 planning_yourcode
 
Sen sors(technovation) week6_thansare
Sen sors(technovation) week6_thansareSen sors(technovation) week6_thansare
Sen sors(technovation) week6_thansare
 
Week5(technovation)-Teach by Mr.than Sare
Week5(technovation)-Teach by Mr.than SareWeek5(technovation)-Teach by Mr.than Sare
Week5(technovation)-Teach by Mr.than Sare
 
App inventor week4(technovation)
App inventor week4(technovation)App inventor week4(technovation)
App inventor week4(technovation)
 

Recently uploaded

Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfadityarao40181
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfakmcokerachita
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsKarinaGenton
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxsocialsciencegdgrohi
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaVirag Sontakke
 
Science lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonScience lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonJericReyAuditor
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 

Recently uploaded (20)

Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdf
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdf
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its Characteristics
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptx
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of India
 
Science lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonScience lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lesson
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 

Html training part1

  • 1. Welcome HTML Training Teach By :Thansare Level: Beginner DOC: https://www.slideshare.net/thansare https://plus.google.com/u/0/102131634838526305706
  • 2. Elements  An HTML element usually consists of a start tag and end tag, with the content inserted in between: <tagname>Content goes here...</tagname> https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 3. Attributes  All HTML elements can have attributes  Attributes provide additional information about an element  Attributes are always specified in the start tag  Attributes usually come in name/value pairs like: name="value"  Type of Attributes Lange Attribute, title Attribute, href Attributes, Size Attribute, alt Attribute, Quote Attribute values https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 4. Lang Attribute  The language of the document can be declared in the <html> tag.  The language is declared with the lang attribute.  Declaring a language is important for accessibility applications (screen readers) and search engines https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 5. Title Attribute  a title attribute is added to the <p> element. The value of the title attribute will be displayed as a tooltip when you mouse over the paragraph https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 6. Href Attribute  HTML links are defined with the <a> tag. The link address is specified in the href attribute https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 7. Size Attribute  HTML images are defined with the <img> tag.  The filename of the source (src), and the size of the image (width and height) are all provided as attributes https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 8. Alt Attribute  The alt attribute specifies an alternative text to be used, when an image cannot be displayed.  The value of the attribute can be read by screen readers. This way, someone "listening" to the webpage, e.g. a blind person, can "hear" the element. https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 9. Quote Attribute Values  Daf https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 10. HTML Headings  Headings are defined with the <h1> to <h6> tags.  <h1> defines the most important heading. <h6> defines the least important heading https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 11. HTML Horizontal Rules  The <hr> tag defines a thematic break in an HTML page, and is most often displayed as a horizontal rule.  The <hr> element is used to separate content (or define a change) in an HTML page https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 12. HTML<head>Element  he HTML <head> element has nothing to do with HTML headings.  The <head> element is a container for metadata. HTML metadata is data about the HTML document. Metadata is not displayed.  The <head> element is placed between the <html> tag and the <body> tag: https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 13. HTML Paragraphs  The HTML <p> element defines a paragraph https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 14. HTML <pre>Element  The HTML <pre> element defines preformatted text.  The text inside a <pre> element is displayed in a fixed-width font (usually Courier), and it preserves both spaces and line breaks https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 15. HTML Style  Setting the style of an HTML element, can be done with the style attribute.  The HTML style attribute has the following syntax <tagname style="property:value;"> https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 16. HTML Background Color  The background-color property defines the background color for an HTML element.  This example sets the background color for a page to powderblue https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 17. HTML Fonts  The font-family property defines the font to be used for an HTML element https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 18. HTML Formatting Elements  n the previous chapter, you learned about the HTML style attribute.  HTML also defines special elements for defining text with a special meaning.  HTML uses elements like <b> and <i> for formatting output, like bold or italic text https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 19. HTML Quotations  The HTML <q> element defines a short quotation. Browsers usually insert quotation marks around the <q> element  The HTML <blockquote> element defines a section that is quoted from another source. Browsers usually indent <blockquote> elements https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 20.  The HTML <abbr> element defines an abbreviation or an acronym.  Marking abbreviations can give useful information to browsers, translation systems and search-engines https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 21.  The HTML <address> element defines contact information (author/owner) of a document or an article.  The <address> element is usually displayed in italic. Most browsers will add a line break before and after the element. https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 22.  The HTML <cite> element defines the title of a work.  Browsers usually display <cite> elements in italic https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 23.  The HTML <bdo> element defines bi-directional override.  The <bdo> element is used to override the current text direction https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 24. HTML Comments  Comment tags are used to insert comments in the HTML source code  Notice that there is an exclamation point (!) in the opening tag, but not in the closing tag.  Conditional comments defines some HTML tags to be executed by Internet Explorer only https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 25. HTML Colors  In HTML, a color can be specified by using a color name, an RGB value, or a HEX value https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 26. HTML CSS  CSS stands for Cascading Style Sheets.  CSS describes how HTML elements are to be displayed on screen, paper, or in other media.  CSS saves a lot of work. It can control the layout of multiple web pages all at once.  CSS can be added to HTML elements in 3 ways:  Inline - by using the style attribute in HTML elements  Internal - by using a <style> element in the <head> section  External - by using an external CSS file
  • 27. HTML Links  Links are found in nearly all web pages. Links allow users to click their way from page to page.  Type of links: Hyper links,Local Links,links color,Image as a Link,……………… https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 28. HTML Images  In HTML, images are defined with the <img> tag.  The <img> tag is empty, it contains attributes only, and does not have a closing tag.  The src attribute specifies the URL (web address) of the image https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 29. HTML Tables  An HTML table is defined with the <table> tag.  Each table row is defined with the <tr> tag. A table header is defined with the <th> tag. By default, table headings are bold and centered. A table data/cell is defined with the <td> tag https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 30. HTML List  List in HTML have two types are Unordered list and Ordered list  Type of style : disc,circle,square,noune, https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 31.  An ordered list starts with the <ol> tag. Each list item starts with the <li> tag.  The list items will be marked with numbers by default https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 32. HTML Classes  he HTML class attribute makes it possible to define equal styles for elements with the same class name.  Here we have three <div> elements that point to the same class name https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 33. HTML Iframes  An iframe is used to display a web page within a web page. https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber
  • 34. HTML Media(Video)  Multimedia on the web is sound, music, videos, movies, and animations.
  • 35. HTML Media(Audio)  MP3 is the newest format for compressed recorded music. The term MP3 has become synonymous with digital music.  If your website is about recorded music, MP3 is the choice.
  • 36. HTML Video Code  Before HTML5, a video could only be played in a browser with a plug-in (like flash).  The HTML5 <video> element specifies a standard way to embed a video in a web page https://www.youtube.com/channel/UCDNuis_my5FvUFx8FPAindg?view_as=subscriber