SlideShare a Scribd company logo
What is an HTML File? HTML stands for  H yper  T ext  M arkup  L anguage  An HTML file is a text file containing small  markup tags   The markup tags tell the Web browser  how to display  the page  An HTML file must have an  htm  or  html  file extension  An HTML file can be created using a  simple text editor
HTML Tags ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Basic HTML Tags Defines a comment <!--> Defines a horizontal rule <hr> Inserts a single line break < br > Defines a paragraph <p> Defines header 1 to header 6 <h1> to <h6> Defines the document's body <body> Defines an HTML document <html> Description Tag
<html> <head> <title>Title of page</title> </head> <body> This is my first homepage.  <b>This text is bold</b> </body> </html>  Tag
Tag Attributes ,[object Object],[object Object],[object Object],[object Object]
Headings ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Paragraphs ,[object Object],[object Object],[object Object],[object Object]
Line Breaks ,[object Object],[object Object],[object Object]
Comments in HTML ,[object Object],[object Object],[object Object],[object Object],[object Object]
<BODY> Tag Attrib. The background color of the document. Deprecated. Use styles instead. rgb(x,x,x) #xxxxxx colorname bgcolor An image to use as the background. Deprecated. Use styles instead. file_name background Specifies the color of the active links in the document. Deprecated. Use styles instead. rgb(x,x,x) #xxxxxx colorname alink Description Value Attribute
Description Value Attribute Specifies the color of the visited links in the document. Deprecated. Use styles instead. rgb(x,x,x) #xxxxxx colorname vlink Specifies the color of the text in the document. Deprecated. Use styles instead. rgb(x,x,x) #xxxxxx colorname text Specifies the color of all the links in the document. Deprecated. Use styles instead. rgb(x,x,x) #xxxxxx colorname link
FONT tag Defines the size of the text in the font element. Deprecated. Use styles instead A number from 1 to 7. size Defines the font of the text in the font element. Deprecated. Use styles instead list_of_fontnames face Defines the color of the text in the font element. Deprecated. Use styles instead rgb(x,x,x) #xxxxxx colorname color Description Value Attribute
Text Formatting Tags Defines small text <small> Defines italic text <i> Defines emphasized text  < em > Defines big text <big> Defines bold text <b> Description Tag
Deprecated. Use styles instead <u> Deprecated. Use <del> instead <strike> Deprecated. Use <del> instead <s> Defines deleted text <del> Defines inserted text <ins> Defines superscripted text <sup> Defines subscripted text <sub> Defines strong text <strong>
Citations, Quotations, and Definition Tags Defines a definition term < dfn > Defines a citation <cite> Defines a short quotation <q> Defines a long quotation < blockquote > Defines the text direction < bdo > Defines an address element <address> Defines an acronym <acronym> Defines an abbreviation < abbr > Description Tag
The Most Common Character Entities: &#34; &quot; quotation mark &quot; &#38; &amp; ampersand & &#62; &gt; greater than > &#60; &lt; less than < &#160; &nbsp; non-breaking space   Entity Number Entity Name Description Result
Some Other Commonly Used Character Entities: &#247; &divide; division ÷ &#215; &times; multiplication × &#174; &reg; registered trademark ® &#169; &copy; copyright © &#167; &sect; section § &#165; &yen; yen ¥ &#163; &pound; pound £ &#162; &cent; cent ¢ Entity Number Entity Name Description Result
The Frameset Tag ,[object Object],[object Object],[object Object],[object Object]
FRAMESET tag Defines the number and size of rows in a frameset pixels % * rows Defines the number and size of columns in a frameset pixels % * cols Description Value Attribute
FRAME tag Defines the URL of the file to show in the frame URL src Determines scrollbar action yes no auto scrolling When set to noresize the user cannot resize the frame noresize noresize Defines a unique name for the frame (to use in scripts) frame_name name Defines the left and right margins in the frame pixels marginwidth Defines the top and bottom margins in the frame pixels marginheight Specifies whether or not to display border around the frame 0 1 frameborder Description Value Attribute
<A> Anchor tag(Hyperlinks) TF ,[object Object],[object Object],[object Object],[object Object],[object Object],_blank _parent _self _top  target STF Names an anchor. Use this attribute to create a bookmark in a document. In future versions of XHTML the name attribute will be replaced by the id attribute!! section_name name STF The target URL of the link URL href
List Tags Defines a definition description < dd > Defines a definition term < dt > Defines a definition list <dl> Defines a list item < li > Defines an unordered list < ul > Defines an ordered list < ol > Description Tag
Forms A form is an area that can contain form elements. Form elements are elements that allow the user to enter information (like text fields, textarea fields, drop-down menus, radio buttons, checkboxes, etc.) in a form. A form is defined with the <form> tag. The most used form tag is the <input> tag. The type of input is specified with the type attribute .  <form>  <input>  <input>  </form>
INPUT tag attributes Indicates the type of the input element. The default value is &quot;text&quot; button checkbox file hidden image password radio reset submit text type
Defines the alignment of text following the image. Note:  Only used with type=&quot;image&quot; left right top middle bottom align A comma-separated list of MIME types that indicates the MIME type of the file transfer. Note:  Only used with type=&quot;file&quot; list_of_mime_types accept Description Value Attribute
Defines a unique name for the input element. Note:  This attribute is required with type=&quot;button&quot;, type=&quot;checkbox&quot;, type=&quot;file&quot;, type=&quot;hidden&quot;, type=&quot;image&quot;, type=&quot;password&quot;, type=&quot;text&quot;, and type=&quot;radio“ field_name Name Defines the maximum number of characters allowed in a text field. Note:  Only used with type=&quot;text&quot; number maxlength Indicates that the input element should be checked when it first loads. Note:  Used with type=&quot;checkbox&quot; and type=&quot;radio&quot; checked  checked Defines an alternate text for the image. Note:  Only used with type=&quot;image&quot; text alt
Defines the URL of the image to display. Note:  Only used with type=&quot;image&quot; URL src Defines the size of the input element. Note:  Cannot be used with type=&quot;hidden&quot; number_of_char size Indicates that the value of this field cannot be modified. Note:  Only used with type=&quot;text&quot; readonly readonly    
For buttons, reset buttons and submit buttons:  Defines the text on the button. For image buttons:  Defines the symbolic result of the field passed to a script. For checkboxes and radio buttons:  Defines the result of the input element when clicked. The result is sent to the form's action URL. For hidden, password, and text fields:  Defines the default value of the element. Note:  Cannot be used with type=&quot;file&quot; Note:  This attribute is required with type=&quot;checkbox&quot; and type=&quot;radio&quot; value value
TEXTAREA tag Specifies the number of rows visible in the text-area number rows Specifies the number of columns visible in the text-area number cols Description Value Attribute
Indicates that the user cannot modify the content in the text-area readonly readonly Specifies a name for the text-area name_of_textarea name
TABLE tag Defines a table footer < tfoot > Defines a table body  < tbody > Defines a table head < thead > Defines the attribute values for one or more columns in a table < col > Defines groups of table columns < colgroup > Defines a table caption <caption> Defines a table cell <td> Defines a table row < tr > Defines a table header < th > Defines a table <table> Description Tag
“ num” pixel distance b/w border and content <CELLPADDING=“num”> “ num” space between each cell <CELLSPACING=“num”> “ number” pixel wide border <BORDER=“number”> Width of table Width Value is num Rowspan A num. To merge data of number of cells Colspan Rgb color code or name Bgcolor Top/bottom/middle/baseline Valign Left/right/center Align
Values to FRAME attri. LHS & RHS Vsides No side Void Right Hand side RHS Left hand side LHS Top and Bottom sides Hsides -----do------ Box All four sides Border Bottom side has single border line of each cell Below Top side has single border line of each cell Above
Values to RULES attri. All rows and columns All Rules between columns only Cols Rules between rows only Rows Cell border between cell groups and row groups only Groups No cell border None

More Related Content

What's hot

Intro to html
Intro to htmlIntro to html
Intro to html
anshuman rahi
 
Learning HTML
Learning HTMLLearning HTML
Learning HTML
Md. Sirajus Salayhin
 
New HTML5/CSS3 techniques
New HTML5/CSS3 techniquesNew HTML5/CSS3 techniques
New HTML5/CSS3 techniques
mbeatrizoliveira
 
Understanding THML
Understanding THMLUnderstanding THML
Understanding THML
Hinopak Motors Limited
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to htmlvikasgaur31
 
HTML & CSS
HTML & CSSHTML & CSS
HTML & CSS
jlinabary
 
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
 
Html1
Html1Html1
Html1
learnt
 
Html Intro2
Html Intro2Html Intro2
Html Intro2mlackner
 
Lecture 2 introduction to html
Lecture 2  introduction to htmlLecture 2  introduction to html
Lecture 2 introduction to html
palhaftab
 
Html basic tags
Html basic tagsHtml basic tags
Html basic tags
umesh patil
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
veena parihar
 
Html ppt by Fathima faculty Hasanath college for women bangalore
Html ppt by Fathima faculty Hasanath college for women bangaloreHtml ppt by Fathima faculty Hasanath college for women bangalore
Html ppt by Fathima faculty Hasanath college for women bangalore
fathima12
 
Html introduction
Html introductionHtml introduction
Html introduction
Dalia Elbadry
 

What's hot (19)

Intro to html
Intro to htmlIntro to html
Intro to html
 
Learning HTML
Learning HTMLLearning HTML
Learning HTML
 
New HTML5/CSS3 techniques
New HTML5/CSS3 techniquesNew HTML5/CSS3 techniques
New HTML5/CSS3 techniques
 
Html tag
Html tagHtml tag
Html tag
 
Understanding THML
Understanding THMLUnderstanding THML
Understanding THML
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
HTML & CSS
HTML & CSSHTML & CSS
HTML & CSS
 
HTML (Web) basics for a beginner
HTML (Web) basics for a beginnerHTML (Web) basics for a beginner
HTML (Web) basics for a beginner
 
Html1
Html1Html1
Html1
 
Html Intro2
Html Intro2Html Intro2
Html Intro2
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
 
Lecture 2 introduction to html
Lecture 2  introduction to htmlLecture 2  introduction to html
Lecture 2 introduction to html
 
Html basic tags
Html basic tagsHtml basic tags
Html basic tags
 
Html
HtmlHtml
Html
 
Html ppt
Html pptHtml ppt
Html ppt
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
Html intro
Html introHtml intro
Html intro
 
Html ppt by Fathima faculty Hasanath college for women bangalore
Html ppt by Fathima faculty Hasanath college for women bangaloreHtml ppt by Fathima faculty Hasanath college for women bangalore
Html ppt by Fathima faculty Hasanath college for women bangalore
 
Html introduction
Html introductionHtml introduction
Html introduction
 

Viewers also liked

종합한국어4 1과 강의 부교재
종합한국어4 1과 강의 부교재종합한국어4 1과 강의 부교재
종합한국어4 1과 강의 부교재YoungAh1
 
Ten Tips for A Good Presentation According to Garr Reynolds
Ten Tips for A Good Presentation According to Garr ReynoldsTen Tips for A Good Presentation According to Garr Reynolds
Ten Tips for A Good Presentation According to Garr Reynolds
mcoffey412246
 
With HTML you can create your own Web site.pdf
With HTML you can create your own Web site.pdfWith HTML you can create your own Web site.pdf
With HTML you can create your own Web site.pdfSMK Negeri 6 Malang
 
Top 10 Powerpoint Slide Tips
Top 10 Powerpoint Slide Tips Top 10 Powerpoint Slide Tips
Top 10 Powerpoint Slide Tips
mcoffey412246
 
종합한국어4 1 강의 부교재
종합한국어4 1 강의 부교재종합한국어4 1 강의 부교재
종합한국어4 1 강의 부교재YoungAh1
 
5 tips on a good powerpoint
5 tips on a good powerpoint5 tips on a good powerpoint
5 tips on a good powerpoint
SilkeyMC
 
Microsoft Office Word Basics Training
Microsoft Office Word Basics TrainingMicrosoft Office Word Basics Training
Microsoft Office Word Basics Training
Mohd Iznan Shamsuddin
 
Teaching Excel
Teaching ExcelTeaching Excel
Teaching Excelsam ran
 
MS EXCEL PPT PRESENTATION
MS EXCEL PPT PRESENTATIONMS EXCEL PPT PRESENTATION
MS EXCEL PPT PRESENTATION
Mridul Bansal
 

Viewers also liked (9)

종합한국어4 1과 강의 부교재
종합한국어4 1과 강의 부교재종합한국어4 1과 강의 부교재
종합한국어4 1과 강의 부교재
 
Ten Tips for A Good Presentation According to Garr Reynolds
Ten Tips for A Good Presentation According to Garr ReynoldsTen Tips for A Good Presentation According to Garr Reynolds
Ten Tips for A Good Presentation According to Garr Reynolds
 
With HTML you can create your own Web site.pdf
With HTML you can create your own Web site.pdfWith HTML you can create your own Web site.pdf
With HTML you can create your own Web site.pdf
 
Top 10 Powerpoint Slide Tips
Top 10 Powerpoint Slide Tips Top 10 Powerpoint Slide Tips
Top 10 Powerpoint Slide Tips
 
종합한국어4 1 강의 부교재
종합한국어4 1 강의 부교재종합한국어4 1 강의 부교재
종합한국어4 1 강의 부교재
 
5 tips on a good powerpoint
5 tips on a good powerpoint5 tips on a good powerpoint
5 tips on a good powerpoint
 
Microsoft Office Word Basics Training
Microsoft Office Word Basics TrainingMicrosoft Office Word Basics Training
Microsoft Office Word Basics Training
 
Teaching Excel
Teaching ExcelTeaching Excel
Teaching Excel
 
MS EXCEL PPT PRESENTATION
MS EXCEL PPT PRESENTATIONMS EXCEL PPT PRESENTATION
MS EXCEL PPT PRESENTATION
 

Similar to Html Presentation Of Web Page Making

Html TAGS
Html TAGSHtml TAGS
Html TAGS
Pranil Dukare
 
AK html
AK  htmlAK  html
AK html
gauravashq
 
HTML
HTMLHTML
HTMLARJUN
 
Web Development using HTML & CSS
Web Development using HTML & CSSWeb Development using HTML & CSS
Web Development using HTML & CSS
Brainware Consultancy Pvt Ltd
 
1.2 elements and attributes copy (3)
1.2 elements and attributes   copy (3)1.2 elements and attributes   copy (3)
1.2 elements and attributes copy (3)Bulldogs83
 
1.2 elements and attributes copy (3)
1.2 elements and attributes   copy (3)1.2 elements and attributes   copy (3)
1.2 elements and attributes copy (3)Bulldogs83
 
HTML
HTMLHTML

Similar to Html Presentation Of Web Page Making (20)

Html
HtmlHtml
Html
 
Html
HtmlHtml
Html
 
Html
HtmlHtml
Html
 
Prabu html
Prabu htmlPrabu html
Prabu html
 
Html intro
Html introHtml intro
Html intro
 
Module 2
Module 2Module 2
Module 2
 
Html TAGS
Html TAGSHtml TAGS
Html TAGS
 
Htmltag.ppt
Htmltag.pptHtmltag.ppt
Htmltag.ppt
 
Diva
DivaDiva
Diva
 
AK html
AK  htmlAK  html
AK html
 
HTML
HTMLHTML
HTML
 
Web Development using HTML & CSS
Web Development using HTML & CSSWeb Development using HTML & CSS
Web Development using HTML & CSS
 
1.2 elements and attributes copy (3)
1.2 elements and attributes   copy (3)1.2 elements and attributes   copy (3)
1.2 elements and attributes copy (3)
 
1.2 elements and attributes copy (3)
1.2 elements and attributes   copy (3)1.2 elements and attributes   copy (3)
1.2 elements and attributes copy (3)
 
Intro to html
Intro to htmlIntro to html
Intro to html
 
Html
HtmlHtml
Html
 
Html
HtmlHtml
Html
 
HTML
HTMLHTML
HTML
 
Html
HtmlHtml
Html
 
Html
HtmlHtml
Html
 

More from Sandeep Supal

Software quality metrics
Software quality metricsSoftware quality metrics
Software quality metrics
Sandeep Supal
 
Idea digital language - UX moodboard and content writing
Idea digital language  -  UX moodboard and content writingIdea digital language  -  UX moodboard and content writing
Idea digital language - UX moodboard and content writing
Sandeep Supal
 
CSF - UX iOS
CSF - UX iOSCSF - UX iOS
CSF - UX iOS
Sandeep Supal
 
ProHealth
ProHealthProHealth
ProHealth
Sandeep Supal
 
Restaurant application ux delivery
Restaurant application ux deliveryRestaurant application ux delivery
Restaurant application ux delivery
Sandeep Supal
 
The restaurant app
The restaurant app The restaurant app
The restaurant app
Sandeep Supal
 
Email template editor
Email template editorEmail template editor
Email template editor
Sandeep Supal
 
Email ck editor
Email ck editorEmail ck editor
Email ck editor
Sandeep Supal
 
Project iHeal
Project iHealProject iHeal
Project iHeal
Sandeep Supal
 
Datagrinch product experience
Datagrinch product experienceDatagrinch product experience
Datagrinch product experience
Sandeep Supal
 
Project ux intel
Project ux intelProject ux intel
Project ux intel
Sandeep Supal
 
Restaurant Application Project workflow
Restaurant Application Project workflowRestaurant Application Project workflow
Restaurant Application Project workflow
Sandeep Supal
 
Restaurant application UX delivery
Restaurant application UX deliveryRestaurant application UX delivery
Restaurant application UX deliverySandeep Supal
 
eCommerce sample wireframes
eCommerce sample wireframeseCommerce sample wireframes
eCommerce sample wireframes
Sandeep Supal
 
eTorF (MPAS) website-ecosystem
eTorF (MPAS) website-ecosystemeTorF (MPAS) website-ecosystem
eTorF (MPAS) website-ecosystemSandeep Supal
 
eTorF website-implementation-rules
eTorF website-implementation-ruleseTorF website-implementation-rules
eTorF website-implementation-rulesSandeep Supal
 
eTorF Website-template-documentation
eTorF Website-template-documentationeTorF Website-template-documentation
eTorF Website-template-documentationSandeep Supal
 
Stakeholder Questionnaire
Stakeholder QuestionnaireStakeholder Questionnaire
Stakeholder QuestionnaireSandeep Supal
 
Mundu entertainment Storyboard
Mundu entertainment StoryboardMundu entertainment Storyboard
Mundu entertainment StoryboardSandeep Supal
 

More from Sandeep Supal (20)

Software quality metrics
Software quality metricsSoftware quality metrics
Software quality metrics
 
Idea digital language - UX moodboard and content writing
Idea digital language  -  UX moodboard and content writingIdea digital language  -  UX moodboard and content writing
Idea digital language - UX moodboard and content writing
 
CSF - UX iOS
CSF - UX iOSCSF - UX iOS
CSF - UX iOS
 
ProHealth
ProHealthProHealth
ProHealth
 
Restaurant application ux delivery
Restaurant application ux deliveryRestaurant application ux delivery
Restaurant application ux delivery
 
The restaurant app
The restaurant app The restaurant app
The restaurant app
 
Email template editor
Email template editorEmail template editor
Email template editor
 
Email ck editor
Email ck editorEmail ck editor
Email ck editor
 
Project iHeal
Project iHealProject iHeal
Project iHeal
 
Datagrinch product experience
Datagrinch product experienceDatagrinch product experience
Datagrinch product experience
 
Project ux intel
Project ux intelProject ux intel
Project ux intel
 
Restaurant Application Project workflow
Restaurant Application Project workflowRestaurant Application Project workflow
Restaurant Application Project workflow
 
Restaurant application UX delivery
Restaurant application UX deliveryRestaurant application UX delivery
Restaurant application UX delivery
 
eCommerce sample wireframes
eCommerce sample wireframeseCommerce sample wireframes
eCommerce sample wireframes
 
eTorF task-lists
eTorF task-listseTorF task-lists
eTorF task-lists
 
eTorF (MPAS) website-ecosystem
eTorF (MPAS) website-ecosystemeTorF (MPAS) website-ecosystem
eTorF (MPAS) website-ecosystem
 
eTorF website-implementation-rules
eTorF website-implementation-ruleseTorF website-implementation-rules
eTorF website-implementation-rules
 
eTorF Website-template-documentation
eTorF Website-template-documentationeTorF Website-template-documentation
eTorF Website-template-documentation
 
Stakeholder Questionnaire
Stakeholder QuestionnaireStakeholder Questionnaire
Stakeholder Questionnaire
 
Mundu entertainment Storyboard
Mundu entertainment StoryboardMundu entertainment Storyboard
Mundu entertainment Storyboard
 

Recently uploaded

Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
DianaGray10
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
DianaGray10
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
Cheryl Hung
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
Product School
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
91mobiles
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
Safe Software
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
KatiaHIMEUR1
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Product School
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
Product School
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
Sri Ambati
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
RTTS
 
Generating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using SmithyGenerating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using Smithy
g2nightmarescribd
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
ThousandEyes
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Albert Hoitingh
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
Alison B. Lowndes
 
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance
 

Recently uploaded (20)

Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
 
Generating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using SmithyGenerating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using Smithy
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
 
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
 

Html Presentation Of Web Page Making

  • 1. What is an HTML File? HTML stands for H yper T ext M arkup L anguage An HTML file is a text file containing small markup tags The markup tags tell the Web browser how to display the page An HTML file must have an htm or html file extension An HTML file can be created using a simple text editor
  • 2.
  • 3. Basic HTML Tags Defines a comment <!--> Defines a horizontal rule <hr> Inserts a single line break < br > Defines a paragraph <p> Defines header 1 to header 6 <h1> to <h6> Defines the document's body <body> Defines an HTML document <html> Description Tag
  • 4. <html> <head> <title>Title of page</title> </head> <body> This is my first homepage. <b>This text is bold</b> </body> </html> Tag
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10. <BODY> Tag Attrib. The background color of the document. Deprecated. Use styles instead. rgb(x,x,x) #xxxxxx colorname bgcolor An image to use as the background. Deprecated. Use styles instead. file_name background Specifies the color of the active links in the document. Deprecated. Use styles instead. rgb(x,x,x) #xxxxxx colorname alink Description Value Attribute
  • 11. Description Value Attribute Specifies the color of the visited links in the document. Deprecated. Use styles instead. rgb(x,x,x) #xxxxxx colorname vlink Specifies the color of the text in the document. Deprecated. Use styles instead. rgb(x,x,x) #xxxxxx colorname text Specifies the color of all the links in the document. Deprecated. Use styles instead. rgb(x,x,x) #xxxxxx colorname link
  • 12. FONT tag Defines the size of the text in the font element. Deprecated. Use styles instead A number from 1 to 7. size Defines the font of the text in the font element. Deprecated. Use styles instead list_of_fontnames face Defines the color of the text in the font element. Deprecated. Use styles instead rgb(x,x,x) #xxxxxx colorname color Description Value Attribute
  • 13. Text Formatting Tags Defines small text <small> Defines italic text <i> Defines emphasized text  < em > Defines big text <big> Defines bold text <b> Description Tag
  • 14. Deprecated. Use styles instead <u> Deprecated. Use <del> instead <strike> Deprecated. Use <del> instead <s> Defines deleted text <del> Defines inserted text <ins> Defines superscripted text <sup> Defines subscripted text <sub> Defines strong text <strong>
  • 15. Citations, Quotations, and Definition Tags Defines a definition term < dfn > Defines a citation <cite> Defines a short quotation <q> Defines a long quotation < blockquote > Defines the text direction < bdo > Defines an address element <address> Defines an acronym <acronym> Defines an abbreviation < abbr > Description Tag
  • 16. The Most Common Character Entities: &#34; &quot; quotation mark &quot; &#38; &amp; ampersand & &#62; &gt; greater than > &#60; &lt; less than < &#160; &nbsp; non-breaking space   Entity Number Entity Name Description Result
  • 17. Some Other Commonly Used Character Entities: &#247; &divide; division ÷ &#215; &times; multiplication × &#174; &reg; registered trademark ® &#169; &copy; copyright © &#167; &sect; section § &#165; &yen; yen ¥ &#163; &pound; pound £ &#162; &cent; cent ¢ Entity Number Entity Name Description Result
  • 18.
  • 19. FRAMESET tag Defines the number and size of rows in a frameset pixels % * rows Defines the number and size of columns in a frameset pixels % * cols Description Value Attribute
  • 20. FRAME tag Defines the URL of the file to show in the frame URL src Determines scrollbar action yes no auto scrolling When set to noresize the user cannot resize the frame noresize noresize Defines a unique name for the frame (to use in scripts) frame_name name Defines the left and right margins in the frame pixels marginwidth Defines the top and bottom margins in the frame pixels marginheight Specifies whether or not to display border around the frame 0 1 frameborder Description Value Attribute
  • 21.
  • 22. List Tags Defines a definition description < dd > Defines a definition term < dt > Defines a definition list <dl> Defines a list item < li > Defines an unordered list < ul > Defines an ordered list < ol > Description Tag
  • 23. Forms A form is an area that can contain form elements. Form elements are elements that allow the user to enter information (like text fields, textarea fields, drop-down menus, radio buttons, checkboxes, etc.) in a form. A form is defined with the <form> tag. The most used form tag is the <input> tag. The type of input is specified with the type attribute . <form> <input> <input> </form>
  • 24. INPUT tag attributes Indicates the type of the input element. The default value is &quot;text&quot; button checkbox file hidden image password radio reset submit text type
  • 25. Defines the alignment of text following the image. Note: Only used with type=&quot;image&quot; left right top middle bottom align A comma-separated list of MIME types that indicates the MIME type of the file transfer. Note: Only used with type=&quot;file&quot; list_of_mime_types accept Description Value Attribute
  • 26. Defines a unique name for the input element. Note: This attribute is required with type=&quot;button&quot;, type=&quot;checkbox&quot;, type=&quot;file&quot;, type=&quot;hidden&quot;, type=&quot;image&quot;, type=&quot;password&quot;, type=&quot;text&quot;, and type=&quot;radio“ field_name Name Defines the maximum number of characters allowed in a text field. Note: Only used with type=&quot;text&quot; number maxlength Indicates that the input element should be checked when it first loads. Note: Used with type=&quot;checkbox&quot; and type=&quot;radio&quot; checked  checked Defines an alternate text for the image. Note: Only used with type=&quot;image&quot; text alt
  • 27. Defines the URL of the image to display. Note: Only used with type=&quot;image&quot; URL src Defines the size of the input element. Note: Cannot be used with type=&quot;hidden&quot; number_of_char size Indicates that the value of this field cannot be modified. Note: Only used with type=&quot;text&quot; readonly readonly    
  • 28. For buttons, reset buttons and submit buttons: Defines the text on the button. For image buttons: Defines the symbolic result of the field passed to a script. For checkboxes and radio buttons: Defines the result of the input element when clicked. The result is sent to the form's action URL. For hidden, password, and text fields: Defines the default value of the element. Note: Cannot be used with type=&quot;file&quot; Note: This attribute is required with type=&quot;checkbox&quot; and type=&quot;radio&quot; value value
  • 29. TEXTAREA tag Specifies the number of rows visible in the text-area number rows Specifies the number of columns visible in the text-area number cols Description Value Attribute
  • 30. Indicates that the user cannot modify the content in the text-area readonly readonly Specifies a name for the text-area name_of_textarea name
  • 31. TABLE tag Defines a table footer < tfoot > Defines a table body < tbody > Defines a table head < thead > Defines the attribute values for one or more columns in a table < col > Defines groups of table columns < colgroup > Defines a table caption <caption> Defines a table cell <td> Defines a table row < tr > Defines a table header < th > Defines a table <table> Description Tag
  • 32. “ num” pixel distance b/w border and content <CELLPADDING=“num”> “ num” space between each cell <CELLSPACING=“num”> “ number” pixel wide border <BORDER=“number”> Width of table Width Value is num Rowspan A num. To merge data of number of cells Colspan Rgb color code or name Bgcolor Top/bottom/middle/baseline Valign Left/right/center Align
  • 33. Values to FRAME attri. LHS & RHS Vsides No side Void Right Hand side RHS Left hand side LHS Top and Bottom sides Hsides -----do------ Box All four sides Border Bottom side has single border line of each cell Below Top side has single border line of each cell Above
  • 34. Values to RULES attri. All rows and columns All Rules between columns only Cols Rules between rows only Rows Cell border between cell groups and row groups only Groups No cell border None