SlideShare a Scribd company logo
1 of 21
GOVT FIRST GRADE COLLEGE CHIKKABASUR
Department of Computer Applications
CLASS : Bcom ii Year
SUBJECT : Computer APPLICATIONS II
TOPIC NAME : Introduction HTML
Presented By : Prof. SHRIDEVI S G
Dept of Computer Applications
Introduction to HTML
What is HTML?
• HTML, otherwise known as HyperText Markup Language, is the
language used to create Web pages
• Using HTML, you can create a Web page with text, graphics, sound,
and video
Tags
• The essence of HTML programming is tags
• A tag is a keyword enclosed by angle brackets ( Example: <I> )
• There are opening and closing tags for many but not all tags; The
affected text is between the two tags
More Tags...
• The opening and closing tags use the same command except the
closing tag contains and additional forward slash /
• For example, the expression <B> Warning </B> would cause the
word ‘Warning’ to appear in bold face on a Web page
Nested Tags
• Whenever you have HTML tags within other HTML tags, you must
close the nearest tag first
• Example:
<H1> <I> The Nation </I> </H1>
Structure of a Web Page
• All Web pages share a common
structure
• All Web pages should contain a
pair of <HTML>, <HEAD>,
<TITLE>, and <BODY> tags
<HTML>
<HEAD>
<TITLE> Example </TITLE>
</HEAD>
<BODY>
This is where you would include the text and
images on your Web page.
</BODY>
</HTML>
The <TITLE> Tag
• Choose the title of your Web page carefully; The title of a Web page
determines its ranking in certain search engines
• The title will also appear on Favorite lists, History lists, and Bookmark
lists to identify your page
Text Formatting
• Manipulating text in HTML can be tricky; Oftentimes, what you see is
NOT what you get
• For instance, special HTML tags are needed to create paragraphs,
move to the next line, and create headings
Text Formatting Tags
<B> Bold Face </B>
<I> Italics </I>
<U> Underline </U>
<P> New Paragraph </P>
<BR> Next Line
Changing the Font
• The expression <FONT FACE = “fontname”> … </FONT> can be
used to change the font of the enclosed text
• To change the size of text use the expression <FONT SIZE=n> ….
</FONT> where n is a number between 1 and 7
Changing the Font
• To change the color, use <FONT COLOR=“red”>….
</FONT>; The color can also be defined using
hexadecimal representation ( Example: #ffffff )
• These attributes can be combined to change
the font, size, and color of the text all at once;
For example, <FONT SIZE=4 FACE=“Courier”
COLOR=“red”> …. </FONT>
Headings
• Web pages are typically organized into sections with headings; To
create a heading use the expression <Hn>….</Hn> where n is a
number between 1 and 7
• In this case, the 1 corresponds to the largest size heading while the 7
corresponds to the smallest size
Aligning Text
• The ALIGN attribute can be inserted in the <P> and <Hn> tags to right
justify, center, or left justify the text
• For example, <H1 ALIGN=CENTER> The New York Times </H1> would
create a centered heading of the largest size
Comment Statements
• Comment statements are notes in the HTML code that explain the
important features of the code
• The comments do not appear on the Web page itself but are a useful
reference to the author of the page and other programmers
• To create a comment statement use the <!-- …. --> tags
The Infamous Blink Tag
• It is possible to make text blink using the <BLINK> … </BLINK> tag
• However, it is best to use this feature at most sparingly or not at all;
What seems like a good idea to a Web designer can become very
annoying to a Web user
• The <BLINK> tag is not supported by Internet Explorer
Page Formatting
• To define the background color, use the BGCOLOR attribute in the
<BODY> tag
• To define the text color, use the TEXT attribute in the <BODY> tag
• To define the size of the text, type <BASEFONT SIZE=n>
Example
<HTML>
<HEAD>
<TITLE> Example </TITLE>
</HEAD>
<BODY BGCOLOR=“black” TEXT=“white”>
<BASEFONT SIZE=7>
This is where you would include the text and images on your Web page.
</BODY>
</HTML>
Inserting Images
• Type <IMG SRC = “image.ext”>, where image.ext indicates the
location of the image file
• The WIDTH=n and HEIGHT=n attributes can be used to adjust the size
of an image
• The attribute BORDER=n can be used to add a border n pixels thick
around the image
Alternate Text
• Some browsers don’t support images. In this case, the ALT attribute
can be used to create text that appears instead of the image.
• Example:
<IMG SRC=“satellite.jpg” ALT = “Picture of satellite”>
THANK YOU

More Related Content

What's hot (20)

Html basic tags
Html basic tagsHtml basic tags
Html basic tags
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
 
Understanding THML
Understanding THMLUnderstanding THML
Understanding THML
 
Introduction to basic HTML [Librarian edition]
Introduction to basic HTML [Librarian edition]Introduction to basic HTML [Librarian edition]
Introduction to basic HTML [Librarian edition]
 
Web design - HTML (Hypertext Markup Language) introduction
Web design - HTML (Hypertext Markup Language) introductionWeb design - HTML (Hypertext Markup Language) introduction
Web design - HTML (Hypertext Markup Language) introduction
 
HTML_Slideshow1
HTML_Slideshow1HTML_Slideshow1
HTML_Slideshow1
 
Web designing (1) - Html Basic Codding
Web designing (1) - Html Basic CoddingWeb designing (1) - Html Basic Codding
Web designing (1) - Html Basic Codding
 
XML
XMLXML
XML
 
Learning Html
Learning HtmlLearning Html
Learning Html
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
 
Html text formatting
Html text formattingHtml text formatting
Html text formatting
 
Stephanie wheeler
Stephanie wheelerStephanie wheeler
Stephanie wheeler
 
Introduction To HTML
Introduction To HTMLIntroduction To HTML
Introduction To HTML
 
Html intro
Html introHtml intro
Html intro
 
Html & dhtml ppt
Html & dhtml pptHtml & dhtml ppt
Html & dhtml ppt
 
Html 1
Html 1Html 1
Html 1
 
PPT on Basic HTML Tags
PPT on Basic HTML TagsPPT on Basic HTML Tags
PPT on Basic HTML Tags
 
Week 4 Lecture Part 1
Week 4 Lecture Part 1Week 4 Lecture Part 1
Week 4 Lecture Part 1
 
The Difference between HTML, XHTML & HTML5 for Beginners
The Difference between HTML, XHTML & HTML5 for BeginnersThe Difference between HTML, XHTML & HTML5 for Beginners
The Difference between HTML, XHTML & HTML5 for Beginners
 
HTML (Hyper Text Markup Language)
HTML (Hyper Text Markup Language)HTML (Hyper Text Markup Language)
HTML (Hyper Text Markup Language)
 

Similar to GFGC CHIKKABASUR(HTML)

Introduction to HTML Communication Skills
Introduction to HTML Communication SkillsIntroduction to HTML Communication Skills
Introduction to HTML Communication SkillsGraceChokoli1
 
introdution-to-html.ppt
introdution-to-html.pptintrodution-to-html.ppt
introdution-to-html.pptcharvivij
 
Introduction to HTML programming for webpages.pdf
Introduction to HTML programming for webpages.pdfIntroduction to HTML programming for webpages.pdf
Introduction to HTML programming for webpages.pdfMahmoud268161
 
Web topic 3 html format tags
Web topic 3  html format tagsWeb topic 3  html format tags
Web topic 3 html format tagsCK Yang
 
Lecture17.pdf
Lecture17.pdfLecture17.pdf
Lecture17.pdfJoyPalit
 
WEB PROGRAMMING- Web page creation using HTML Tags
WEB PROGRAMMING-  Web page creation using HTML TagsWEB PROGRAMMING-  Web page creation using HTML Tags
WEB PROGRAMMING- Web page creation using HTML Tagsjananisairam
 
introdution-to-htmlppt.ppt
introdution-to-htmlppt.pptintrodution-to-htmlppt.ppt
introdution-to-htmlppt.pptnavyar41
 
introduction-to-html hyper text markup .ppt
introduction-to-html hyper text markup  .pptintroduction-to-html hyper text markup  .ppt
introduction-to-html hyper text markup .pptubaidullah75790
 
Week-1_PPT_WEBAPPS-done.pptx
Week-1_PPT_WEBAPPS-done.pptxWeek-1_PPT_WEBAPPS-done.pptx
Week-1_PPT_WEBAPPS-done.pptxJuvyIlustrisimo
 
introdution-to-html[1].ppt
introdution-to-html[1].pptintrodution-to-html[1].ppt
introdution-to-html[1].pptssuserec53e73
 
introdution-to-html.ppt
introdution-to-html.pptintrodution-to-html.ppt
introdution-to-html.pptSri Latha
 

Similar to GFGC CHIKKABASUR(HTML) (20)

IntroHTML.ppt
IntroHTML.pptIntroHTML.ppt
IntroHTML.ppt
 
HTML.ppt
HTML.pptHTML.ppt
HTML.ppt
 
IntroHTML.ppt
IntroHTML.pptIntroHTML.ppt
IntroHTML.ppt
 
Introduction to HTML Communication Skills
Introduction to HTML Communication SkillsIntroduction to HTML Communication Skills
Introduction to HTML Communication Skills
 
HTML-INTRO.pptx
HTML-INTRO.pptxHTML-INTRO.pptx
HTML-INTRO.pptx
 
introdution-to-html.ppt
introdution-to-html.pptintrodution-to-html.ppt
introdution-to-html.ppt
 
Introduction to HTML programming for webpages.pdf
Introduction to HTML programming for webpages.pdfIntroduction to HTML programming for webpages.pdf
Introduction to HTML programming for webpages.pdf
 
Web topic 3 html format tags
Web topic 3  html format tagsWeb topic 3  html format tags
Web topic 3 html format tags
 
Lecture17.pdf
Lecture17.pdfLecture17.pdf
Lecture17.pdf
 
WEB PROGRAMMING- Web page creation using HTML Tags
WEB PROGRAMMING-  Web page creation using HTML TagsWEB PROGRAMMING-  Web page creation using HTML Tags
WEB PROGRAMMING- Web page creation using HTML Tags
 
introdution-to-htmlppt.ppt
introdution-to-htmlppt.pptintrodution-to-htmlppt.ppt
introdution-to-htmlppt.ppt
 
introduction-to-html hyper text markup .ppt
introduction-to-html hyper text markup  .pptintroduction-to-html hyper text markup  .ppt
introduction-to-html hyper text markup .ppt
 
Week-1_PPT_WEBAPPS-done.pptx
Week-1_PPT_WEBAPPS-done.pptxWeek-1_PPT_WEBAPPS-done.pptx
Week-1_PPT_WEBAPPS-done.pptx
 
introdution-to-html[1].ppt
introdution-to-html[1].pptintrodution-to-html[1].ppt
introdution-to-html[1].ppt
 
Computer language - HTML tags
Computer language - HTML tagsComputer language - HTML tags
Computer language - HTML tags
 
HTML.pptx
HTML.pptxHTML.pptx
HTML.pptx
 
Intro html
Intro htmlIntro html
Intro html
 
introdution-to-html.ppt
introdution-to-html.pptintrodution-to-html.ppt
introdution-to-html.ppt
 
introdution-to-html.ppt
introdution-to-html.pptintrodution-to-html.ppt
introdution-to-html.ppt
 
summary html.ppt
summary html.pptsummary html.ppt
summary html.ppt
 

More from GOVT FIRST GRADE COLLEGE CHIKKABASUR

GFGC CHIKKABASUR ( Presidant akila bharata kannada sahity sammelana )
GFGC CHIKKABASUR (  Presidant akila bharata kannada sahity sammelana )GFGC CHIKKABASUR (  Presidant akila bharata kannada sahity sammelana )
GFGC CHIKKABASUR ( Presidant akila bharata kannada sahity sammelana )GOVT FIRST GRADE COLLEGE CHIKKABASUR
 

More from GOVT FIRST GRADE COLLEGE CHIKKABASUR (20)

gfgc Entrepreneural development programme
gfgc Entrepreneural development programmegfgc Entrepreneural development programme
gfgc Entrepreneural development programme
 
GFGC CHIKKABASUR ( Human Resource Manangement)
GFGC CHIKKABASUR ( Human Resource Manangement)GFGC CHIKKABASUR ( Human Resource Manangement)
GFGC CHIKKABASUR ( Human Resource Manangement)
 
GFGC CHIKKABASUR ( human resource management)
GFGC CHIKKABASUR ( human resource management)GFGC CHIKKABASUR ( human resource management)
GFGC CHIKKABASUR ( human resource management)
 
GFGC CHIKKABASUR DETERMINANTS OF WORKING CAPITAL
GFGC CHIKKABASUR DETERMINANTS OF WORKING CAPITALGFGC CHIKKABASUR DETERMINANTS OF WORKING CAPITAL
GFGC CHIKKABASUR DETERMINANTS OF WORKING CAPITAL
 
GFGC CHIKKABASUR ( The theory of consumer behaviour )
GFGC CHIKKABASUR ( The theory of consumer behaviour )GFGC CHIKKABASUR ( The theory of consumer behaviour )
GFGC CHIKKABASUR ( The theory of consumer behaviour )
 
GFGC CHIKKABASUR ( Trade union movement )
GFGC CHIKKABASUR ( Trade union movement )GFGC CHIKKABASUR ( Trade union movement )
GFGC CHIKKABASUR ( Trade union movement )
 
GFGC CHIKKABASUR ( Meaning and functions of central bank )
GFGC CHIKKABASUR ( Meaning and functions of central bank )GFGC CHIKKABASUR ( Meaning and functions of central bank )
GFGC CHIKKABASUR ( Meaning and functions of central bank )
 
GFGC CHIKKABASUR ( BASIC FEATURES OF INDIAN CONSTITUTION )
GFGC CHIKKABASUR (  BASIC FEATURES OF INDIAN CONSTITUTION )GFGC CHIKKABASUR (  BASIC FEATURES OF INDIAN CONSTITUTION )
GFGC CHIKKABASUR ( BASIC FEATURES OF INDIAN CONSTITUTION )
 
GFGC CHIKKABASUR ( Presidant akila bharata kannada sahity sammelana )
GFGC CHIKKABASUR (  Presidant akila bharata kannada sahity sammelana )GFGC CHIKKABASUR (  Presidant akila bharata kannada sahity sammelana )
GFGC CHIKKABASUR ( Presidant akila bharata kannada sahity sammelana )
 
GFGC CHIKKABASUR ( Business Environment )
GFGC CHIKKABASUR (  Business Environment )GFGC CHIKKABASUR (  Business Environment )
GFGC CHIKKABASUR ( Business Environment )
 
GFGC CHIKKABASUR ( CEDOK )
GFGC CHIKKABASUR ( CEDOK )GFGC CHIKKABASUR ( CEDOK )
GFGC CHIKKABASUR ( CEDOK )
 
GFGC CHIKKABASUR ( Preamble of the constitution of india )
GFGC CHIKKABASUR ( Preamble of the constitution of india )GFGC CHIKKABASUR ( Preamble of the constitution of india )
GFGC CHIKKABASUR ( Preamble of the constitution of india )
 
GFGC CHIKKABASUR ( FINANCIAL ACCOUNTING )
GFGC CHIKKABASUR ( FINANCIAL ACCOUNTING )GFGC CHIKKABASUR ( FINANCIAL ACCOUNTING )
GFGC CHIKKABASUR ( FINANCIAL ACCOUNTING )
 
GFGC CHIKKABASUR ( PRINCIPLE OF MARKETING )
GFGC CHIKKABASUR ( PRINCIPLE OF MARKETING )GFGC CHIKKABASUR ( PRINCIPLE OF MARKETING )
GFGC CHIKKABASUR ( PRINCIPLE OF MARKETING )
 
GFGC CHIKKABASUR ( Market segmentation )
GFGC CHIKKABASUR ( Market segmentation )GFGC CHIKKABASUR ( Market segmentation )
GFGC CHIKKABASUR ( Market segmentation )
 
GFGC CHIKKABASUR ( ISSUE OF SHARES )
GFGC CHIKKABASUR (  ISSUE OF SHARES )GFGC CHIKKABASUR (  ISSUE OF SHARES )
GFGC CHIKKABASUR ( ISSUE OF SHARES )
 
GFGC CHIKKABASUR(HTML)
GFGC CHIKKABASUR(HTML)GFGC CHIKKABASUR(HTML)
GFGC CHIKKABASUR(HTML)
 
GFGC CHIKKABASUR(HTML)
GFGC CHIKKABASUR(HTML)GFGC CHIKKABASUR(HTML)
GFGC CHIKKABASUR(HTML)
 
GFGC CHIKKABASUR ( Feminist criticism )
GFGC CHIKKABASUR ( Feminist criticism )GFGC CHIKKABASUR ( Feminist criticism )
GFGC CHIKKABASUR ( Feminist criticism )
 
GFGC CHIKKABASUR ( INTERPRETATION OF SHORT NOTICES )
GFGC CHIKKABASUR (  INTERPRETATION OF SHORT NOTICES )GFGC CHIKKABASUR (  INTERPRETATION OF SHORT NOTICES )
GFGC CHIKKABASUR ( INTERPRETATION OF SHORT NOTICES )
 

Recently uploaded

Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Micromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of PowdersMicromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of PowdersChitralekhaTherkar
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
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
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docxPoojaSen20
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
PSYCHIATRIC History collection FORMAT.pptx
PSYCHIATRIC   History collection FORMAT.pptxPSYCHIATRIC   History collection FORMAT.pptx
PSYCHIATRIC History collection FORMAT.pptxPoojaSen20
 

Recently uploaded (20)

Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
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🔝
 
Micromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of PowdersMicromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of Powders
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
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
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docx
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
PSYCHIATRIC History collection FORMAT.pptx
PSYCHIATRIC   History collection FORMAT.pptxPSYCHIATRIC   History collection FORMAT.pptx
PSYCHIATRIC History collection FORMAT.pptx
 

GFGC CHIKKABASUR(HTML)

  • 1. GOVT FIRST GRADE COLLEGE CHIKKABASUR Department of Computer Applications CLASS : Bcom ii Year SUBJECT : Computer APPLICATIONS II TOPIC NAME : Introduction HTML Presented By : Prof. SHRIDEVI S G Dept of Computer Applications
  • 3. What is HTML? • HTML, otherwise known as HyperText Markup Language, is the language used to create Web pages • Using HTML, you can create a Web page with text, graphics, sound, and video
  • 4. Tags • The essence of HTML programming is tags • A tag is a keyword enclosed by angle brackets ( Example: <I> ) • There are opening and closing tags for many but not all tags; The affected text is between the two tags
  • 5. More Tags... • The opening and closing tags use the same command except the closing tag contains and additional forward slash / • For example, the expression <B> Warning </B> would cause the word ‘Warning’ to appear in bold face on a Web page
  • 6. Nested Tags • Whenever you have HTML tags within other HTML tags, you must close the nearest tag first • Example: <H1> <I> The Nation </I> </H1>
  • 7. Structure of a Web Page • All Web pages share a common structure • All Web pages should contain a pair of <HTML>, <HEAD>, <TITLE>, and <BODY> tags <HTML> <HEAD> <TITLE> Example </TITLE> </HEAD> <BODY> This is where you would include the text and images on your Web page. </BODY> </HTML>
  • 8. The <TITLE> Tag • Choose the title of your Web page carefully; The title of a Web page determines its ranking in certain search engines • The title will also appear on Favorite lists, History lists, and Bookmark lists to identify your page
  • 9. Text Formatting • Manipulating text in HTML can be tricky; Oftentimes, what you see is NOT what you get • For instance, special HTML tags are needed to create paragraphs, move to the next line, and create headings
  • 10. Text Formatting Tags <B> Bold Face </B> <I> Italics </I> <U> Underline </U> <P> New Paragraph </P> <BR> Next Line
  • 11. Changing the Font • The expression <FONT FACE = “fontname”> … </FONT> can be used to change the font of the enclosed text • To change the size of text use the expression <FONT SIZE=n> …. </FONT> where n is a number between 1 and 7
  • 12. Changing the Font • To change the color, use <FONT COLOR=“red”>…. </FONT>; The color can also be defined using hexadecimal representation ( Example: #ffffff ) • These attributes can be combined to change the font, size, and color of the text all at once; For example, <FONT SIZE=4 FACE=“Courier” COLOR=“red”> …. </FONT>
  • 13. Headings • Web pages are typically organized into sections with headings; To create a heading use the expression <Hn>….</Hn> where n is a number between 1 and 7 • In this case, the 1 corresponds to the largest size heading while the 7 corresponds to the smallest size
  • 14. Aligning Text • The ALIGN attribute can be inserted in the <P> and <Hn> tags to right justify, center, or left justify the text • For example, <H1 ALIGN=CENTER> The New York Times </H1> would create a centered heading of the largest size
  • 15. Comment Statements • Comment statements are notes in the HTML code that explain the important features of the code • The comments do not appear on the Web page itself but are a useful reference to the author of the page and other programmers • To create a comment statement use the <!-- …. --> tags
  • 16. The Infamous Blink Tag • It is possible to make text blink using the <BLINK> … </BLINK> tag • However, it is best to use this feature at most sparingly or not at all; What seems like a good idea to a Web designer can become very annoying to a Web user • The <BLINK> tag is not supported by Internet Explorer
  • 17. Page Formatting • To define the background color, use the BGCOLOR attribute in the <BODY> tag • To define the text color, use the TEXT attribute in the <BODY> tag • To define the size of the text, type <BASEFONT SIZE=n>
  • 18. Example <HTML> <HEAD> <TITLE> Example </TITLE> </HEAD> <BODY BGCOLOR=“black” TEXT=“white”> <BASEFONT SIZE=7> This is where you would include the text and images on your Web page. </BODY> </HTML>
  • 19. Inserting Images • Type <IMG SRC = “image.ext”>, where image.ext indicates the location of the image file • The WIDTH=n and HEIGHT=n attributes can be used to adjust the size of an image • The attribute BORDER=n can be used to add a border n pixels thick around the image
  • 20. Alternate Text • Some browsers don’t support images. In this case, the ALT attribute can be used to create text that appears instead of the image. • Example: <IMG SRC=“satellite.jpg” ALT = “Picture of satellite”>