SlideShare a Scribd company logo
1 of 7
Lecture 6

Today we will learn about
   • Create an Email link and External link.
   • Insert graphics.
   • Link to specific section in another document.

Create an Email link
        When you visit a web site, generally at the bottom you see a link for mail to the
creator of the website. The subject of today’s lecture is how to create such link. Such a
link which on clicking opens an email client is called as email link.

Please type the following code in notepad and save as .html file.
<html>
<head>
        <title>mail</title>
</head>
<body>
        My name is Harshit Kumar. <br>
        I am studying at University of Suwon <br>
        To mail me, Please <a href="mailto:kumar_har@yahoo.com">Click here</a>
</body>
</html>

The output will be

My name is Harshit Kumar.
I am studying at University of Suwon
To mail me, Please Click here

When you will click on “Click here”, mail client will open, through which you can send
email.

Create an External Link
        When you visit a web site, you find links to other websites. When you click on the
link, another web site opens. Such a link which on clicking opens another website is
called as external link

Please type the following code in notepad and save as .html file.
<html>
<head>
        <title>mail</title>
</head>
<body>
        My name is Harshit Kumar. <br>
        I am studying at University of Suwon <br>
The sites I visit for fun are
        <ol>
                 <li><a href="http://www.yahoo.com">Yahoo</a></li>
                 <li><a href="http://www.hotmail.com">Hotmail</a></li>
        </ol>
        To mail me, Please <a href="mailto:kumar_har@yahoo.com">Click here</a>
</body>
</html>

The output will be

My name is Harshit Kumar.
I am studying at University of Suwon
The sites I visit for fun are

   1. Yahoo
   2. Hotmail

To mail me, Please Click here

So, when you will click on “Yahoo”, yahoo website will open, and if you will click on
“Hotmail”, Hotmail website will open.

Insert Graphics
       Most of the websites that you visit contain graphics along with text. So graphics
need to be inserted in a web page.

To understand this, you need an image file, please download an image file from the
internet or locate for an image file on your computer. I have got an image file by the
name of “asia.gif”.

<html>
<head>
       <title>mail</title>
</head>
<body>
       My name is Harshit Kumar. <br>
       I am studying at University of Suwon <br>
       Below is the map of Asia<br>
       <img src="asia.gif" alt="map of asia">
</body>
</html>

And the output is
My name is Harshit Kumar.
I am studying at University of Suwon
Below is the map of Asia




Link to specific section in another document
       In lecture5 we discussed about, how to make a link from one document to another
document. Now we will learn about how to make a link to specific part inside a
document.

Let’s take the previous example

Type the following code and save as first.html
<html>
<head>
       <title> First Page</title>
</head>
</body>
       My name is Harshit Kumar. <br>
       I am teaching at Suwon University <br>
       My hobbies are <br>
       <a href="hobbies.html#soccer">Soccer</a><br>
       <a href="hobbies.html#music">Music</a><br>
<a href="hobbies.html#read">Reading</a><br>


</body>
</html>

And type the following code and save as hobbies.html
<html>
<head>
       <title>This is my hobby page</title>
</head>
<body>
       <b>My hobbies are</b><br>
<a name="music">               <p align="center">Listenin Music</p></a>
               <p>
                      I like listening to music a lot.<br>
                      I like rock, instrumental music.<br>
                      My favorites are <br>
                      <ul>
                               <li>Michael Jackson</li>
                               <li>Aerosmith</li>
                               <li>Savage Garden</li>
                               <li>Celin Deon</li>
                               <li>Guns & Roses</li>
                               <li>Britny Spears</li>
                               <li>50 Cents</li>
                               <li>Richard Marx</li>
                               <li>Elton John</li>
                               <li>Bryan Adams</li>
                               <li>All Saints</li>
                               <li>Backstreet Boys</li>
                               <li>Bon Jovi </li>
                               <li>Eminem</li>
                               <li>Enrique Iglesias</li>
                               <li>Eric Clapton</li>
                               <li>George Michael</li>
                               <li>Faithless</li>
                               <li>Queeb</li>
                               <li>Cher</li>
                               <li>Janet Jackson</li>
                               <li>Jennifer Lopez</li>
                               <li>Jewel</li>
                               <li>Kylie Minogue</li>

                     </ul>
</p>
      <a name="read">         <p align="center">Reading </p></a>
My favorites are <br>
                      <ul>
                              <li>Computer Books</li>
                              <li>Fiction</li>
                              <li>Non-fiction</li>
                              <li>Science</li>
                              <li>Newspaper</li>
                      </ul>

              <a name="soccer"><p align="center">Soccer</p></a>
              <ul>
                    My favorite players are
                           <li>David Batty, Leeds United </li>
                           <li>Marcus Bent, Ipswich Town </li>
                           <li>Craig Burley, Derby County </li>
                           <li>Mike Salmon, Ipswich Town </li>
                           <li>David Seaman, Arsenal </li>
                           <li>Craig Short, Blackburn Rovers </li>
                           <li>Dean Windass, Middlesbrough</li>

              </ul>
</body>
</html>

Now when you will click on “soccer”, hobbies.html will open and scroll down, so that
you can see the details about soccer. Similarly, when you click on “music” , hobbies.html
will open and if required, page will scroll down, so that you can see the details about
music.


Links to Specific Sections within the Same Document
       The above concept can also be used for linking a specific section with in the same
document. For example.

<html>
<head>
       <title>This is my hobby page</title>
</head>
<body>
       <b>My hobbies are</b><br>
       <a href="#music">Listening Music</a><br>
       <a href="#read">Reading</a><br>
       <a href="#soccer">Soccer</a><br>
<a name="music"><p align="center">Listenin Music</p></a>
             <p>
                   I like listening to music a lot.<br>
                   I like rock, instrumental music.<br>
                   My favorites are <br>
                   <ul>
                            <li>Michael Jackson</li>
                            <li>Aerosmith</li>
                            <li>Savage Garden</li>
                            <li>Celin Deon</li>
                            <li>Guns & Roses</li>
                            <li>Britny Spears</li>
                            <li>50 Cents</li>
                            <li>Richard Marx</li>
                            <li>Elton John</li>
                            <li>Bryan Adams</li>
                            <li>All Saints</li>
                            <li>Backstreet Boys</li>
                            <li>Bon Jovi </li>
                            <li>Eminem</li>
                            <li>Enrique Iglesias</li>
                            <li>Eric Clapton</li>
                            <li>George Michael</li>
                            <li>Faithless</li>
                            <li>Queeb</li>
                            <li>Cher</li>
                            <li>Janet Jackson</li>
                            <li>Jennifer Lopez</li>
                            <li>Jewel</li>
                            <li>Kylie Minogue</li>

                     </ul>


              </p>
      <a name="read">        <p align="center">Reading </p></a>
My favorites are <br>
                      <ul>
                             <li>Computer Books</li>
                             <li>Fiction</li>
                             <li>Non-fiction</li>
                             <li>Science</li>
                             <li>Newspaper</li>
                     </ul>
<a name="soccer"><p align="center">Soccer</p></a>
          <ul>
                My favorite players are
                       <li>David Batty, Leeds United </li>
                       <li>Marcus Bent, Ipswich Town </li>
                       <li>Craig Burley, Derby County </li>
                       <li>Mike Salmon, Ipswich Town </li>
                       <li>David Seaman, Arsenal </li>
                       <li>Craig Short, Blackburn Rovers </li>
                       <li>Dean Windass, Middlesbrough</li>

          </ul>
</body>
</html>

More Related Content

More from H K

Solution2
Solution2Solution2
Solution2H K
 
Mid-
Mid-Mid-
Mid-H K
 
Assignment4
Assignment4Assignment4
Assignment4H K
 
Assignment4
Assignment4Assignment4
Assignment4H K
 
Dm assignment3
Dm assignment3Dm assignment3
Dm assignment3H K
 
Proof
ProofProof
ProofH K
 
Resolution
ResolutionResolution
ResolutionH K
 
Assignment description
Assignment descriptionAssignment description
Assignment descriptionH K
 
Dm assignment2
Dm assignment2Dm assignment2
Dm assignment2H K
 
Set
SetSet
SetH K
 
Dm assignment1
Dm assignment1Dm assignment1
Dm assignment1H K
 
Logic
LogicLogic
LogicH K
 
Introduction
IntroductionIntroduction
IntroductionH K
 
Assignment 2 sol
Assignment 2 solAssignment 2 sol
Assignment 2 solH K
 
Assignment sw solution
Assignment sw solutionAssignment sw solution
Assignment sw solutionH K
 
Violinphoenix
ViolinphoenixViolinphoenix
ViolinphoenixH K
 
Ie project
Ie projectIe project
Ie projectH K
 
Assignment cn subnetting
Assignment cn subnettingAssignment cn subnetting
Assignment cn subnettingH K
 
Assignment uplaodfile
Assignment uplaodfileAssignment uplaodfile
Assignment uplaodfileH K
 
Assignment sw
Assignment swAssignment sw
Assignment swH K
 

More from H K (20)

Solution2
Solution2Solution2
Solution2
 
Mid-
Mid-Mid-
Mid-
 
Assignment4
Assignment4Assignment4
Assignment4
 
Assignment4
Assignment4Assignment4
Assignment4
 
Dm assignment3
Dm assignment3Dm assignment3
Dm assignment3
 
Proof
ProofProof
Proof
 
Resolution
ResolutionResolution
Resolution
 
Assignment description
Assignment descriptionAssignment description
Assignment description
 
Dm assignment2
Dm assignment2Dm assignment2
Dm assignment2
 
Set
SetSet
Set
 
Dm assignment1
Dm assignment1Dm assignment1
Dm assignment1
 
Logic
LogicLogic
Logic
 
Introduction
IntroductionIntroduction
Introduction
 
Assignment 2 sol
Assignment 2 solAssignment 2 sol
Assignment 2 sol
 
Assignment sw solution
Assignment sw solutionAssignment sw solution
Assignment sw solution
 
Violinphoenix
ViolinphoenixViolinphoenix
Violinphoenix
 
Ie project
Ie projectIe project
Ie project
 
Assignment cn subnetting
Assignment cn subnettingAssignment cn subnetting
Assignment cn subnetting
 
Assignment uplaodfile
Assignment uplaodfileAssignment uplaodfile
Assignment uplaodfile
 
Assignment sw
Assignment swAssignment sw
Assignment sw
 

Recently uploaded

INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxHumphrey A Beña
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptxmary850239
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONHumphrey A Beña
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfPatidar M
 
ICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfVanessa Camilleri
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptshraddhaparab530
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSJoshuaGantuangco2
 
Millenials and Fillennials (Ethical Challenge and Responses).pptx
Millenials and Fillennials (Ethical Challenge and Responses).pptxMillenials and Fillennials (Ethical Challenge and Responses).pptx
Millenials and Fillennials (Ethical Challenge and Responses).pptxJanEmmanBrigoli
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfJemuel Francisco
 
EmpTech Lesson 18 - ICT Project for Website Traffic Statistics and Performanc...
EmpTech Lesson 18 - ICT Project for Website Traffic Statistics and Performanc...EmpTech Lesson 18 - ICT Project for Website Traffic Statistics and Performanc...
EmpTech Lesson 18 - ICT Project for Website Traffic Statistics and Performanc...liera silvan
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxVanesaIglesias10
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...Postal Advocate Inc.
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
Presentation Activity 2. Unit 3 transv.pptx
Presentation Activity 2. Unit 3 transv.pptxPresentation Activity 2. Unit 3 transv.pptx
Presentation Activity 2. Unit 3 transv.pptxRosabel UA
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptxmary850239
 

Recently uploaded (20)

INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptxINCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
 
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptxYOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdf
 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 
ICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdf
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.ppt
 
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptxLEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
 
Millenials and Fillennials (Ethical Challenge and Responses).pptx
Millenials and Fillennials (Ethical Challenge and Responses).pptxMillenials and Fillennials (Ethical Challenge and Responses).pptx
Millenials and Fillennials (Ethical Challenge and Responses).pptx
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
 
EmpTech Lesson 18 - ICT Project for Website Traffic Statistics and Performanc...
EmpTech Lesson 18 - ICT Project for Website Traffic Statistics and Performanc...EmpTech Lesson 18 - ICT Project for Website Traffic Statistics and Performanc...
EmpTech Lesson 18 - ICT Project for Website Traffic Statistics and Performanc...
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptx
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
Presentation Activity 2. Unit 3 transv.pptx
Presentation Activity 2. Unit 3 transv.pptxPresentation Activity 2. Unit 3 transv.pptx
Presentation Activity 2. Unit 3 transv.pptx
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx
 

Html basics 5 email image

  • 1. Lecture 6 Today we will learn about • Create an Email link and External link. • Insert graphics. • Link to specific section in another document. Create an Email link When you visit a web site, generally at the bottom you see a link for mail to the creator of the website. The subject of today’s lecture is how to create such link. Such a link which on clicking opens an email client is called as email link. Please type the following code in notepad and save as .html file. <html> <head> <title>mail</title> </head> <body> My name is Harshit Kumar. <br> I am studying at University of Suwon <br> To mail me, Please <a href="mailto:kumar_har@yahoo.com">Click here</a> </body> </html> The output will be My name is Harshit Kumar. I am studying at University of Suwon To mail me, Please Click here When you will click on “Click here”, mail client will open, through which you can send email. Create an External Link When you visit a web site, you find links to other websites. When you click on the link, another web site opens. Such a link which on clicking opens another website is called as external link Please type the following code in notepad and save as .html file. <html> <head> <title>mail</title> </head> <body> My name is Harshit Kumar. <br> I am studying at University of Suwon <br>
  • 2. The sites I visit for fun are <ol> <li><a href="http://www.yahoo.com">Yahoo</a></li> <li><a href="http://www.hotmail.com">Hotmail</a></li> </ol> To mail me, Please <a href="mailto:kumar_har@yahoo.com">Click here</a> </body> </html> The output will be My name is Harshit Kumar. I am studying at University of Suwon The sites I visit for fun are 1. Yahoo 2. Hotmail To mail me, Please Click here So, when you will click on “Yahoo”, yahoo website will open, and if you will click on “Hotmail”, Hotmail website will open. Insert Graphics Most of the websites that you visit contain graphics along with text. So graphics need to be inserted in a web page. To understand this, you need an image file, please download an image file from the internet or locate for an image file on your computer. I have got an image file by the name of “asia.gif”. <html> <head> <title>mail</title> </head> <body> My name is Harshit Kumar. <br> I am studying at University of Suwon <br> Below is the map of Asia<br> <img src="asia.gif" alt="map of asia"> </body> </html> And the output is
  • 3. My name is Harshit Kumar. I am studying at University of Suwon Below is the map of Asia Link to specific section in another document In lecture5 we discussed about, how to make a link from one document to another document. Now we will learn about how to make a link to specific part inside a document. Let’s take the previous example Type the following code and save as first.html <html> <head> <title> First Page</title> </head> </body> My name is Harshit Kumar. <br> I am teaching at Suwon University <br> My hobbies are <br> <a href="hobbies.html#soccer">Soccer</a><br> <a href="hobbies.html#music">Music</a><br>
  • 4. <a href="hobbies.html#read">Reading</a><br> </body> </html> And type the following code and save as hobbies.html <html> <head> <title>This is my hobby page</title> </head> <body> <b>My hobbies are</b><br> <a name="music"> <p align="center">Listenin Music</p></a> <p> I like listening to music a lot.<br> I like rock, instrumental music.<br> My favorites are <br> <ul> <li>Michael Jackson</li> <li>Aerosmith</li> <li>Savage Garden</li> <li>Celin Deon</li> <li>Guns & Roses</li> <li>Britny Spears</li> <li>50 Cents</li> <li>Richard Marx</li> <li>Elton John</li> <li>Bryan Adams</li> <li>All Saints</li> <li>Backstreet Boys</li> <li>Bon Jovi </li> <li>Eminem</li> <li>Enrique Iglesias</li> <li>Eric Clapton</li> <li>George Michael</li> <li>Faithless</li> <li>Queeb</li> <li>Cher</li> <li>Janet Jackson</li> <li>Jennifer Lopez</li> <li>Jewel</li> <li>Kylie Minogue</li> </ul>
  • 5. </p> <a name="read"> <p align="center">Reading </p></a> My favorites are <br> <ul> <li>Computer Books</li> <li>Fiction</li> <li>Non-fiction</li> <li>Science</li> <li>Newspaper</li> </ul> <a name="soccer"><p align="center">Soccer</p></a> <ul> My favorite players are <li>David Batty, Leeds United </li> <li>Marcus Bent, Ipswich Town </li> <li>Craig Burley, Derby County </li> <li>Mike Salmon, Ipswich Town </li> <li>David Seaman, Arsenal </li> <li>Craig Short, Blackburn Rovers </li> <li>Dean Windass, Middlesbrough</li> </ul> </body> </html> Now when you will click on “soccer”, hobbies.html will open and scroll down, so that you can see the details about soccer. Similarly, when you click on “music” , hobbies.html will open and if required, page will scroll down, so that you can see the details about music. Links to Specific Sections within the Same Document The above concept can also be used for linking a specific section with in the same document. For example. <html> <head> <title>This is my hobby page</title> </head> <body> <b>My hobbies are</b><br> <a href="#music">Listening Music</a><br> <a href="#read">Reading</a><br> <a href="#soccer">Soccer</a><br>
  • 6. <a name="music"><p align="center">Listenin Music</p></a> <p> I like listening to music a lot.<br> I like rock, instrumental music.<br> My favorites are <br> <ul> <li>Michael Jackson</li> <li>Aerosmith</li> <li>Savage Garden</li> <li>Celin Deon</li> <li>Guns & Roses</li> <li>Britny Spears</li> <li>50 Cents</li> <li>Richard Marx</li> <li>Elton John</li> <li>Bryan Adams</li> <li>All Saints</li> <li>Backstreet Boys</li> <li>Bon Jovi </li> <li>Eminem</li> <li>Enrique Iglesias</li> <li>Eric Clapton</li> <li>George Michael</li> <li>Faithless</li> <li>Queeb</li> <li>Cher</li> <li>Janet Jackson</li> <li>Jennifer Lopez</li> <li>Jewel</li> <li>Kylie Minogue</li> </ul> </p> <a name="read"> <p align="center">Reading </p></a> My favorites are <br> <ul> <li>Computer Books</li> <li>Fiction</li> <li>Non-fiction</li> <li>Science</li> <li>Newspaper</li> </ul>
  • 7. <a name="soccer"><p align="center">Soccer</p></a> <ul> My favorite players are <li>David Batty, Leeds United </li> <li>Marcus Bent, Ipswich Town </li> <li>Craig Burley, Derby County </li> <li>Mike Salmon, Ipswich Town </li> <li>David Seaman, Arsenal </li> <li>Craig Short, Blackburn Rovers </li> <li>Dean Windass, Middlesbrough</li> </ul> </body> </html>