SlideShare ist ein Scribd-Unternehmen logo
1 von 34
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

Weitere ähnliche Inhalte

Was ist angesagt?

Was ist angesagt? (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
 

Andere mochten auch

종합한국어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 Reynoldsmcoffey412246
 
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 powerpointSilkeyMC
 
Microsoft Office Word Basics Training
Microsoft Office Word Basics TrainingMicrosoft Office Word Basics Training
Microsoft Office Word Basics TrainingMohd Iznan Shamsuddin
 
Teaching Excel
Teaching ExcelTeaching Excel
Teaching Excelsam ran
 
MS EXCEL PPT PRESENTATION
MS EXCEL PPT PRESENTATIONMS EXCEL PPT PRESENTATION
MS EXCEL PPT PRESENTATIONMridul Bansal
 

Andere mochten auch (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
 

Ähnlich wie 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
 

Mehr von Sandeep Supal

Software quality metrics
Software quality metricsSoftware quality metrics
Software quality metricsSandeep 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 writingSandeep Supal
 
Restaurant application ux delivery
Restaurant application ux deliveryRestaurant application ux delivery
Restaurant application ux deliverySandeep Supal
 
Email template editor
Email template editorEmail template editor
Email template editorSandeep Supal
 
Datagrinch product experience
Datagrinch product experienceDatagrinch product experience
Datagrinch product experienceSandeep Supal
 
Restaurant Application Project workflow
Restaurant Application Project workflowRestaurant Application Project workflow
Restaurant Application Project workflowSandeep 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 wireframesSandeep 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
 

Mehr von 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
 

Kürzlich hochgeladen

Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 

Kürzlich hochgeladen (20)

Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 

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