SlideShare ist ein Scribd-Unternehmen logo
1 von 33
Hyper Text Markup Language (HTML)
2
HTML Intro…
 HTML, an abbreviation of Hyper
Text Markup Language, was first
proposed by Tim Berners-Lee of
CERN in late 1991.
 Hypertext is text, displayed on a
computer, with references
(hyperlinks) to other text.
 A markup language is a set of
annotations to text that describe
how something is to be structured.
3
Basics of HTML
 HTML is not a programming
language, it is a markup language.
 A markup language is a set of
markup tags.
 It uses markup tags to describe web
pages.
 HTML documents are text files made
up of HTML elements or tags.
4
Basics of HTML continued...
 An HTML file must have an .htm or
.html file extension.
 An HTML file can be created using a
simple text editor (e.g. Notepad or
vi editor).
 HTML documents are also called web
pages.
5
HTML Tags
 HTML markup tags are usually called
HTML tags.
 HTML tags are keywords surrounded
by angle brackets like <html>.
 HTML tags normally come in pairs
like <b> and </b>.
 The first tag in a pair is the start
tag, the second tag is the end tag.
6
HTML Tags continued....
 Start and end tags are also called
opening tags and closing tags.
 Some HTML tags have no ending,
e.g. <hr />, <br />, <img /> etc.
 The text between the start and end
tags is the element content.
 HTML tags are not case sensitive,
<b> means the same as <B>.
7
A bit about web browsers
 The purpose of a web browser (like
Internet Explorer or Mozilla Firefox) is
to read HTML documents and display
them as web pages.
 The browser does not display the
HTML tags, but uses the tags to
interpret the content of the page.
8
HTML Example
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
Example Explained
 The text between <html> and </html> describes the
web page.
 The text between <body> and </body> is the visible
page content.
 The text between <h1> and </h1> is displayed as a
heading.
 The text between <p> and </p> is displayed as a
paragraph.
9
Common HTML Tags
Tag Description
<html> Defines an HTML document
<head> Defines the document's head
<title> Defines the document's title under head
section
<body> Defines the document's body
<h1> to <h6> Defines header 1 to header 6
<p> Defines a paragraph
<br/> Inserts a single line break
<hr/> Defines a horizontal rule Defines a comment
<!--> Inserts a single line break
10
HTML Tags continued…
Tag Description
<a> Defines an anchor
<img/> Defines an image
<ul> Defines an unordered list
<ol> Defines an ordered list
<li> Defines a list item
<table> Defines a table
<form> Defines a form
<frameset> Defines a set of frames
<frame/> Defines a sub-window (a frame)
11
HTML Styles
<html>
<body style="background-
color:PowderBlue;">
<h1>Look! Styles and colors</h1>
<p style="font-family:verdana;
color:red">
This text is in Verdana and red</p>
<p style="font-
family:times;color:green">
This text is in Times and green</p>
<p style="font-size:30px">This text
is 30 pixels high</p>
</body>
</html>
12
HTML QUIZ
 You can test your HTML skills with
this Quiz.
 The test contains 20 questions.
 Let’s start the QUIZ now…
13
HTML QUIZ:-Q1
1. What does HTML stand for?
a> Home Tool Markup Language
b> Hyper Text Markup Language
c> Hyperlinks and Text Markup Language
Answer
(b)
14
HTML QUIZ:-Q2
2. Who is making the Web
standards?
a> Mozilla
b> Microsoft
c> The World Wide Web Consortium
d> The World Wide Web Corporation
Answer
(c)
15
HTML QUIZ:-Q3
3. Choose the correct HTML tag for
the largest heading
a> <h6>
b> <h1>
c> <head>
d> <heading>
Answer
(b)
16
HTML QUIZ:-Q4
4. What is the correct HTML tag for
inserting a line break?
a> <br />
b> <lb />
c> <break />
Answer
(a)
17
HTML QUIZ:-Q5
5. What is the correct HTML for
adding a background color?
a> <body background="yellow">
b> <background>yellow</background>
c> <body style="background-color:yellow">
Answer
(c)
18
HTML QUIZ:-Q6
6. Choose the correct HTML tag to
make a text bold
a> <bold>
b> <b>
Answer
(b)
19
HTML QUIZ:-Q7
7. Choose the correct HTML tag to
make a text italic
a> <italic>
b> <i>
Answer
(b)
20
HTML QUIZ:-Q8
8. What is the correct HTML for
creating a hyperlink?
a> <a url="http://www.aot.com">AOT.com</a>
b> <a>http://www.aot.com</a>
c> <a href="http://www. aot.com"> AOT </a>
d> <a name="http://www. aot.com"> AOT.com </a>
Answer
(c)
21
HTML QUIZ:-Q9
9. How can you create an e-mail
link?
a] <mail>xxx@yyy</mail>
b] <mail href="xxx@yyy">
c] <a href="xxx@yyy">
d] <a href="mailto:xxx@yyy">
Answer
(d)
22
HTML QUIZ:-Q10
10. How can you open a link in a
new browser window?
a] <a href="url" new>
b] <a href="url" target="_blank">
c] <a href="url" target="new">
Answer
(b)
23
HTML QUIZ:-Q11
11. Which of these tags are all
<table> tags?
a] <table><tr><tt>
b]<thead><body><tr>
c]<table><tr><td>
d]<table><head><tfoot>
Answer
(c)
24
HTML QUIZ:-Q12
12. Choose the correct HTML to left-align the
content inside a tablecell
a] <td align="left">
b] <tdleft>
c] <td valign="left">
d] <td leftalign>
Answer
(a)
25
HTML QUIZ:-Q13
13. How can you make a list that
lists the items with numbers?
a] <list>
b] <ol>
c] <ul>
d] <dl>
Answer
(b)
26
HTML QUIZ:-Q14
14. How can you make a list that
lists the items with bullets?
a] <ol>
b] <ul>
c] <dl>
d] <list>
Answer
(b)
27
HTML QUIZ:-Q15
15. What is the correct HTML for
making a checkbox?
a] <input type="check" />
b] <input type="checkbox" />
c] <check>
d] <checkbox>
Answer
(b)
28
HTML QUIZ:-Q16
16. What is the correct HTML for
making a text input field?
a] <input type="text" />
b] <input type="textfield" />
c] <textfield>
d] <textinput type="text" />
Answer
(a)
29
HTML QUIZ:-Q17
17. What is the correct HTML for
making a drop-down list?
a] <input type="list" />
b] <select>
c] <list>
d] <input type="dropdown" />
Answer
(b)
30
HTML QUIZ:-Q18
18. What is the correct HTML for
making a text area?
a] <textarea>
b] <input type="textarea" />
c] <input type="textbox" />
Answer
(a)
31
HTML QUIZ:-Q19
19. What is the correct HTML for
inserting an image?
a] <img>image.gif</img>
b] <img src="image.gif" />
c] <image src="image.gif" />
d] <img href="image.gif />
Answer
(b)
32
HTML QUIZ:-Q20
20. What is the correct HTML for
inserting a background image?
a] <body background="background.gif">
b] <background img="background.gif">
c] <img src="background.gif" background />
Answer
(a)
33
End of Quiz…
HOPE YOU HAVE
ENJOYED THE SESSION… !!!

Weitere ähnliche Inhalte

Was ist angesagt?

Filipino 10 Curriculum Guide rev.2016
Filipino 10 Curriculum Guide rev.2016Filipino 10 Curriculum Guide rev.2016
Filipino 10 Curriculum Guide rev.2016Chuckry Maunes
 
Campus Journalism Feature Article
Campus Journalism Feature Article Campus Journalism Feature Article
Campus Journalism Feature Article Eri Ren
 
FILIPINO 10 Q3 WEEK 5.pptx
FILIPINO 10 Q3 WEEK 5.pptxFILIPINO 10 Q3 WEEK 5.pptx
FILIPINO 10 Q3 WEEK 5.pptxKlarisReyes1
 
Bahagi ng pamahayagan
Bahagi ng pamahayaganBahagi ng pamahayagan
Bahagi ng pamahayaganTine Bernadez
 
Kasaysayan ng maikling kwento
Kasaysayan ng maikling kwentoKasaysayan ng maikling kwento
Kasaysayan ng maikling kwentochrisbasques
 
Banghay aralin sa A.P. I
Banghay aralin sa A.P. IBanghay aralin sa A.P. I
Banghay aralin sa A.P. IMark Joseph Hao
 
Paggamit ng mga matatalinghagang salita
Paggamit ng mga matatalinghagang salitaPaggamit ng mga matatalinghagang salita
Paggamit ng mga matatalinghagang salitaMartinGeraldine
 
Ang alpabeto at patnubay sa ispelling ng wikang
Ang alpabeto at patnubay sa ispelling ng wikangAng alpabeto at patnubay sa ispelling ng wikang
Ang alpabeto at patnubay sa ispelling ng wikanghazel flores
 
Layout or Makeup Journalism
Layout or Makeup JournalismLayout or Makeup Journalism
Layout or Makeup JournalismDeb Homillano
 
Modyul 8 pagsusuri ng akda batay sa romantesismo at eksisten
Modyul 8 pagsusuri ng akda batay sa romantesismo at eksistenModyul 8 pagsusuri ng akda batay sa romantesismo at eksisten
Modyul 8 pagsusuri ng akda batay sa romantesismo at eksistendionesioable
 
Filipino 8 Curriculum Guide rev.2016
Filipino 8 Curriculum Guide rev.2016Filipino 8 Curriculum Guide rev.2016
Filipino 8 Curriculum Guide rev.2016Chuckry Maunes
 
Kayarian ng panaguri at paksa
Kayarian ng panaguri at paksaKayarian ng panaguri at paksa
Kayarian ng panaguri at paksavaneza22
 

Was ist angesagt? (20)

Filipino 10 Curriculum Guide rev.2016
Filipino 10 Curriculum Guide rev.2016Filipino 10 Curriculum Guide rev.2016
Filipino 10 Curriculum Guide rev.2016
 
Pagsulat ng balita
Pagsulat ng balitaPagsulat ng balita
Pagsulat ng balita
 
Campus Journalism Feature Article
Campus Journalism Feature Article Campus Journalism Feature Article
Campus Journalism Feature Article
 
FILIPINO 10 Q3 WEEK 5.pptx
FILIPINO 10 Q3 WEEK 5.pptxFILIPINO 10 Q3 WEEK 5.pptx
FILIPINO 10 Q3 WEEK 5.pptx
 
akademya.pptx
akademya.pptxakademya.pptx
akademya.pptx
 
Filipino presentation
Filipino presentationFilipino presentation
Filipino presentation
 
Noli me tangere (kabanata 7)
Noli me tangere (kabanata 7)Noli me tangere (kabanata 7)
Noli me tangere (kabanata 7)
 
Ang aking ama
Ang aking amaAng aking ama
Ang aking ama
 
Lesson plan 8
Lesson plan 8 Lesson plan 8
Lesson plan 8
 
Pagbabagong diwa 101
Pagbabagong diwa 101Pagbabagong diwa 101
Pagbabagong diwa 101
 
Bahagi ng pamahayagan
Bahagi ng pamahayaganBahagi ng pamahayagan
Bahagi ng pamahayagan
 
Kasaysayan ng maikling kwento
Kasaysayan ng maikling kwentoKasaysayan ng maikling kwento
Kasaysayan ng maikling kwento
 
Banghay aralin sa A.P. I
Banghay aralin sa A.P. IBanghay aralin sa A.P. I
Banghay aralin sa A.P. I
 
Paggamit ng mga matatalinghagang salita
Paggamit ng mga matatalinghagang salitaPaggamit ng mga matatalinghagang salita
Paggamit ng mga matatalinghagang salita
 
Ang alpabeto at patnubay sa ispelling ng wikang
Ang alpabeto at patnubay sa ispelling ng wikangAng alpabeto at patnubay sa ispelling ng wikang
Ang alpabeto at patnubay sa ispelling ng wikang
 
Mga kalimitang bahagi ng isang manwal
Mga kalimitang bahagi ng isang manwalMga kalimitang bahagi ng isang manwal
Mga kalimitang bahagi ng isang manwal
 
Layout or Makeup Journalism
Layout or Makeup JournalismLayout or Makeup Journalism
Layout or Makeup Journalism
 
Modyul 8 pagsusuri ng akda batay sa romantesismo at eksisten
Modyul 8 pagsusuri ng akda batay sa romantesismo at eksistenModyul 8 pagsusuri ng akda batay sa romantesismo at eksisten
Modyul 8 pagsusuri ng akda batay sa romantesismo at eksisten
 
Filipino 8 Curriculum Guide rev.2016
Filipino 8 Curriculum Guide rev.2016Filipino 8 Curriculum Guide rev.2016
Filipino 8 Curriculum Guide rev.2016
 
Kayarian ng panaguri at paksa
Kayarian ng panaguri at paksaKayarian ng panaguri at paksa
Kayarian ng panaguri at paksa
 

Ähnlich wie @Html (20)

Html basics
Html basicsHtml basics
Html basics
 
HTML for Education
HTML for EducationHTML for Education
HTML for Education
 
HTML 4.0
HTML 4.0HTML 4.0
HTML 4.0
 
Html basics NOTE
Html basics NOTEHtml basics NOTE
Html basics NOTE
 
Html
HtmlHtml
Html
 
Html basics
Html basicsHtml basics
Html basics
 
HTML_Basics.pdf
HTML_Basics.pdfHTML_Basics.pdf
HTML_Basics.pdf
 
Html basics
Html basicsHtml basics
Html basics
 
Html basics
Html basicsHtml basics
Html basics
 
Html basics
Html basicsHtml basics
Html basics
 
Html basics
Html basicsHtml basics
Html basics
 
Html basic file
Html basic fileHtml basic file
Html basic file
 
Html basics
Html basicsHtml basics
Html basics
 
Html BASICS
Html BASICSHtml BASICS
Html BASICS
 
Html basics 1
Html basics 1Html basics 1
Html basics 1
 
Basic Html Notes
Basic Html NotesBasic Html Notes
Basic Html Notes
 
Web Design-III IT.ppt
Web Design-III IT.pptWeb Design-III IT.ppt
Web Design-III IT.ppt
 
Learning html. (Part- 1)
Learning html. (Part- 1)Learning html. (Part- 1)
Learning html. (Part- 1)
 
HTML.pdf
HTML.pdfHTML.pdf
HTML.pdf
 
Html introduction
Html introductionHtml introduction
Html introduction
 

Kürzlich hochgeladen

💚 Call Girls Bahraich 9332606886 High Profile Call Girls You Can Get The S...
💚 Call Girls Bahraich   9332606886  High Profile Call Girls You Can Get The S...💚 Call Girls Bahraich   9332606886  High Profile Call Girls You Can Get The S...
💚 Call Girls Bahraich 9332606886 High Profile Call Girls You Can Get The S...Sareena Khatun
 
Local Call Girls in Seoni 9332606886 HOT & SEXY Models beautiful and charmin...
Local Call Girls in Seoni  9332606886 HOT & SEXY Models beautiful and charmin...Local Call Girls in Seoni  9332606886 HOT & SEXY Models beautiful and charmin...
Local Call Girls in Seoni 9332606886 HOT & SEXY Models beautiful and charmin...kumargunjan9515
 
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查ydyuyu
 
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrStory Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrHenryBriggs2
 
Indian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi EscortsIndian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi EscortsMonica Sydney
 
Vip Firozabad Phone 8250092165 Escorts Service At 6k To 30k Along With Ac Room
Vip Firozabad Phone 8250092165 Escorts Service At 6k To 30k Along With Ac RoomVip Firozabad Phone 8250092165 Escorts Service At 6k To 30k Along With Ac Room
Vip Firozabad Phone 8250092165 Escorts Service At 6k To 30k Along With Ac Roommeghakumariji156
 
Ballia Escorts Service Girl ^ 9332606886, WhatsApp Anytime Ballia
Ballia Escorts Service Girl ^ 9332606886, WhatsApp Anytime BalliaBallia Escorts Service Girl ^ 9332606886, WhatsApp Anytime Ballia
Ballia Escorts Service Girl ^ 9332606886, WhatsApp Anytime Balliameghakumariji156
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirtrahman018755
 
一比一原版奥兹学院毕业证如何办理
一比一原版奥兹学院毕业证如何办理一比一原版奥兹学院毕业证如何办理
一比一原版奥兹学院毕业证如何办理F
 
Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.krishnachandrapal52
 
Best SEO Services Company in Dallas | Best SEO Agency Dallas
Best SEO Services Company in Dallas | Best SEO Agency DallasBest SEO Services Company in Dallas | Best SEO Agency Dallas
Best SEO Services Company in Dallas | Best SEO Agency DallasDigicorns Technologies
 
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime NagercoilNagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoilmeghakumariji156
 
Mira Road Housewife Call Girls 07506202331, Nalasopara Call Girls
Mira Road Housewife Call Girls 07506202331, Nalasopara Call GirlsMira Road Housewife Call Girls 07506202331, Nalasopara Call Girls
Mira Road Housewife Call Girls 07506202331, Nalasopara Call GirlsPriya Reddy
 
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样ayvbos
 
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdfMatthew Sinclair
 
Call girls Service Canacona - 8250092165 Our call girls are sure to provide y...
Call girls Service Canacona - 8250092165 Our call girls are sure to provide y...Call girls Service Canacona - 8250092165 Our call girls are sure to provide y...
Call girls Service Canacona - 8250092165 Our call girls are sure to provide y...MOHANI PANDEY
 
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi EscortsRussian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi EscortsMonica Sydney
 
一比一原版田纳西大学毕业证如何办理
一比一原版田纳西大学毕业证如何办理一比一原版田纳西大学毕业证如何办理
一比一原版田纳西大学毕业证如何办理F
 
Sensual Call Girls in Tarn Taran Sahib { 9332606886 } VVIP NISHA Call Girls N...
Sensual Call Girls in Tarn Taran Sahib { 9332606886 } VVIP NISHA Call Girls N...Sensual Call Girls in Tarn Taran Sahib { 9332606886 } VVIP NISHA Call Girls N...
Sensual Call Girls in Tarn Taran Sahib { 9332606886 } VVIP NISHA Call Girls N...kumargunjan9515
 
一比一原版犹他大学毕业证如何办理
一比一原版犹他大学毕业证如何办理一比一原版犹他大学毕业证如何办理
一比一原版犹他大学毕业证如何办理F
 

Kürzlich hochgeladen (20)

💚 Call Girls Bahraich 9332606886 High Profile Call Girls You Can Get The S...
💚 Call Girls Bahraich   9332606886  High Profile Call Girls You Can Get The S...💚 Call Girls Bahraich   9332606886  High Profile Call Girls You Can Get The S...
💚 Call Girls Bahraich 9332606886 High Profile Call Girls You Can Get The S...
 
Local Call Girls in Seoni 9332606886 HOT & SEXY Models beautiful and charmin...
Local Call Girls in Seoni  9332606886 HOT & SEXY Models beautiful and charmin...Local Call Girls in Seoni  9332606886 HOT & SEXY Models beautiful and charmin...
Local Call Girls in Seoni 9332606886 HOT & SEXY Models beautiful and charmin...
 
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
 
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrStory Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
 
Indian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi EscortsIndian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
 
Vip Firozabad Phone 8250092165 Escorts Service At 6k To 30k Along With Ac Room
Vip Firozabad Phone 8250092165 Escorts Service At 6k To 30k Along With Ac RoomVip Firozabad Phone 8250092165 Escorts Service At 6k To 30k Along With Ac Room
Vip Firozabad Phone 8250092165 Escorts Service At 6k To 30k Along With Ac Room
 
Ballia Escorts Service Girl ^ 9332606886, WhatsApp Anytime Ballia
Ballia Escorts Service Girl ^ 9332606886, WhatsApp Anytime BalliaBallia Escorts Service Girl ^ 9332606886, WhatsApp Anytime Ballia
Ballia Escorts Service Girl ^ 9332606886, WhatsApp Anytime Ballia
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirt
 
一比一原版奥兹学院毕业证如何办理
一比一原版奥兹学院毕业证如何办理一比一原版奥兹学院毕业证如何办理
一比一原版奥兹学院毕业证如何办理
 
Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.
 
Best SEO Services Company in Dallas | Best SEO Agency Dallas
Best SEO Services Company in Dallas | Best SEO Agency DallasBest SEO Services Company in Dallas | Best SEO Agency Dallas
Best SEO Services Company in Dallas | Best SEO Agency Dallas
 
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime NagercoilNagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
 
Mira Road Housewife Call Girls 07506202331, Nalasopara Call Girls
Mira Road Housewife Call Girls 07506202331, Nalasopara Call GirlsMira Road Housewife Call Girls 07506202331, Nalasopara Call Girls
Mira Road Housewife Call Girls 07506202331, Nalasopara Call Girls
 
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
 
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
 
Call girls Service Canacona - 8250092165 Our call girls are sure to provide y...
Call girls Service Canacona - 8250092165 Our call girls are sure to provide y...Call girls Service Canacona - 8250092165 Our call girls are sure to provide y...
Call girls Service Canacona - 8250092165 Our call girls are sure to provide y...
 
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi EscortsRussian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
 
一比一原版田纳西大学毕业证如何办理
一比一原版田纳西大学毕业证如何办理一比一原版田纳西大学毕业证如何办理
一比一原版田纳西大学毕业证如何办理
 
Sensual Call Girls in Tarn Taran Sahib { 9332606886 } VVIP NISHA Call Girls N...
Sensual Call Girls in Tarn Taran Sahib { 9332606886 } VVIP NISHA Call Girls N...Sensual Call Girls in Tarn Taran Sahib { 9332606886 } VVIP NISHA Call Girls N...
Sensual Call Girls in Tarn Taran Sahib { 9332606886 } VVIP NISHA Call Girls N...
 
一比一原版犹他大学毕业证如何办理
一比一原版犹他大学毕业证如何办理一比一原版犹他大学毕业证如何办理
一比一原版犹他大学毕业证如何办理
 

@Html

  • 1. Hyper Text Markup Language (HTML)
  • 2. 2 HTML Intro…  HTML, an abbreviation of Hyper Text Markup Language, was first proposed by Tim Berners-Lee of CERN in late 1991.  Hypertext is text, displayed on a computer, with references (hyperlinks) to other text.  A markup language is a set of annotations to text that describe how something is to be structured.
  • 3. 3 Basics of HTML  HTML is not a programming language, it is a markup language.  A markup language is a set of markup tags.  It uses markup tags to describe web pages.  HTML documents are text files made up of HTML elements or tags.
  • 4. 4 Basics of HTML continued...  An HTML file must have an .htm or .html file extension.  An HTML file can be created using a simple text editor (e.g. Notepad or vi editor).  HTML documents are also called web pages.
  • 5. 5 HTML Tags  HTML markup tags are usually called HTML tags.  HTML tags are keywords surrounded by angle brackets like <html>.  HTML tags normally come in pairs like <b> and </b>.  The first tag in a pair is the start tag, the second tag is the end tag.
  • 6. 6 HTML Tags continued....  Start and end tags are also called opening tags and closing tags.  Some HTML tags have no ending, e.g. <hr />, <br />, <img /> etc.  The text between the start and end tags is the element content.  HTML tags are not case sensitive, <b> means the same as <B>.
  • 7. 7 A bit about web browsers  The purpose of a web browser (like Internet Explorer or Mozilla Firefox) is to read HTML documents and display them as web pages.  The browser does not display the HTML tags, but uses the tags to interpret the content of the page.
  • 8. 8 HTML Example <html> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html> Example Explained  The text between <html> and </html> describes the web page.  The text between <body> and </body> is the visible page content.  The text between <h1> and </h1> is displayed as a heading.  The text between <p> and </p> is displayed as a paragraph.
  • 9. 9 Common HTML Tags Tag Description <html> Defines an HTML document <head> Defines the document's head <title> Defines the document's title under head section <body> Defines the document's body <h1> to <h6> Defines header 1 to header 6 <p> Defines a paragraph <br/> Inserts a single line break <hr/> Defines a horizontal rule Defines a comment <!--> Inserts a single line break
  • 10. 10 HTML Tags continued… Tag Description <a> Defines an anchor <img/> Defines an image <ul> Defines an unordered list <ol> Defines an ordered list <li> Defines a list item <table> Defines a table <form> Defines a form <frameset> Defines a set of frames <frame/> Defines a sub-window (a frame)
  • 11. 11 HTML Styles <html> <body style="background- color:PowderBlue;"> <h1>Look! Styles and colors</h1> <p style="font-family:verdana; color:red"> This text is in Verdana and red</p> <p style="font- family:times;color:green"> This text is in Times and green</p> <p style="font-size:30px">This text is 30 pixels high</p> </body> </html>
  • 12. 12 HTML QUIZ  You can test your HTML skills with this Quiz.  The test contains 20 questions.  Let’s start the QUIZ now…
  • 13. 13 HTML QUIZ:-Q1 1. What does HTML stand for? a> Home Tool Markup Language b> Hyper Text Markup Language c> Hyperlinks and Text Markup Language Answer (b)
  • 14. 14 HTML QUIZ:-Q2 2. Who is making the Web standards? a> Mozilla b> Microsoft c> The World Wide Web Consortium d> The World Wide Web Corporation Answer (c)
  • 15. 15 HTML QUIZ:-Q3 3. Choose the correct HTML tag for the largest heading a> <h6> b> <h1> c> <head> d> <heading> Answer (b)
  • 16. 16 HTML QUIZ:-Q4 4. What is the correct HTML tag for inserting a line break? a> <br /> b> <lb /> c> <break /> Answer (a)
  • 17. 17 HTML QUIZ:-Q5 5. What is the correct HTML for adding a background color? a> <body background="yellow"> b> <background>yellow</background> c> <body style="background-color:yellow"> Answer (c)
  • 18. 18 HTML QUIZ:-Q6 6. Choose the correct HTML tag to make a text bold a> <bold> b> <b> Answer (b)
  • 19. 19 HTML QUIZ:-Q7 7. Choose the correct HTML tag to make a text italic a> <italic> b> <i> Answer (b)
  • 20. 20 HTML QUIZ:-Q8 8. What is the correct HTML for creating a hyperlink? a> <a url="http://www.aot.com">AOT.com</a> b> <a>http://www.aot.com</a> c> <a href="http://www. aot.com"> AOT </a> d> <a name="http://www. aot.com"> AOT.com </a> Answer (c)
  • 21. 21 HTML QUIZ:-Q9 9. How can you create an e-mail link? a] <mail>xxx@yyy</mail> b] <mail href="xxx@yyy"> c] <a href="xxx@yyy"> d] <a href="mailto:xxx@yyy"> Answer (d)
  • 22. 22 HTML QUIZ:-Q10 10. How can you open a link in a new browser window? a] <a href="url" new> b] <a href="url" target="_blank"> c] <a href="url" target="new"> Answer (b)
  • 23. 23 HTML QUIZ:-Q11 11. Which of these tags are all <table> tags? a] <table><tr><tt> b]<thead><body><tr> c]<table><tr><td> d]<table><head><tfoot> Answer (c)
  • 24. 24 HTML QUIZ:-Q12 12. Choose the correct HTML to left-align the content inside a tablecell a] <td align="left"> b] <tdleft> c] <td valign="left"> d] <td leftalign> Answer (a)
  • 25. 25 HTML QUIZ:-Q13 13. How can you make a list that lists the items with numbers? a] <list> b] <ol> c] <ul> d] <dl> Answer (b)
  • 26. 26 HTML QUIZ:-Q14 14. How can you make a list that lists the items with bullets? a] <ol> b] <ul> c] <dl> d] <list> Answer (b)
  • 27. 27 HTML QUIZ:-Q15 15. What is the correct HTML for making a checkbox? a] <input type="check" /> b] <input type="checkbox" /> c] <check> d] <checkbox> Answer (b)
  • 28. 28 HTML QUIZ:-Q16 16. What is the correct HTML for making a text input field? a] <input type="text" /> b] <input type="textfield" /> c] <textfield> d] <textinput type="text" /> Answer (a)
  • 29. 29 HTML QUIZ:-Q17 17. What is the correct HTML for making a drop-down list? a] <input type="list" /> b] <select> c] <list> d] <input type="dropdown" /> Answer (b)
  • 30. 30 HTML QUIZ:-Q18 18. What is the correct HTML for making a text area? a] <textarea> b] <input type="textarea" /> c] <input type="textbox" /> Answer (a)
  • 31. 31 HTML QUIZ:-Q19 19. What is the correct HTML for inserting an image? a] <img>image.gif</img> b] <img src="image.gif" /> c] <image src="image.gif" /> d] <img href="image.gif /> Answer (b)
  • 32. 32 HTML QUIZ:-Q20 20. What is the correct HTML for inserting a background image? a] <body background="background.gif"> b] <background img="background.gif"> c] <img src="background.gif" background /> Answer (a)
  • 33. 33 End of Quiz… HOPE YOU HAVE ENJOYED THE SESSION… !!!