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 GOVT FIRST GRADE COLLEGE HTML INTRO

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 GOVT FIRST GRADE COLLEGE HTML INTRO (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(HTML)
GFGC CHIKKABASUR(HTML)GFGC CHIKKABASUR(HTML)
GFGC CHIKKABASUR(HTML)
 
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 ( 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

Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfUmakantAnnand
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
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
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
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
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...M56BOOKSTORE PRODUCT/SERVICE
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfakmcokerachita
 
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
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 

Recently uploaded (20)

Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.Compdf
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
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
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
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
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdf
 
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
 
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
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 

GOVT FIRST GRADE COLLEGE HTML INTRO

  • 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”>