SlideShare a Scribd company logo
Lecture 7
In this lecture, we will learn about
    • Using an Image as a Link
    • Aligning Images

Using an Image as a Link
       I am using three images, for my hobby page. Type the following code and save
as .html file.
<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"><img src="soccer.gif" alt=soccer></a><br>
       <a href="hobbies.html#music"><img src="music.gif" alt=music></a><br>
       <a href="hobbies.html#read"><img src="book.gif" alt=book></a><br>
</body>
</html>

The above code is similar to the previous code, but the only difference is instead of text,
now there are images. Earlier clicking on text opens a new page, but now clicking on link
will open a new page.


Aligning Images

With the <img src= > tag, you can specify the width and height of the image i.e.
<img src=” “ width=” “ height=” “>

<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"><img src="soccer.gif" alt=soccer width=100
height=100></a><br>
       <a href="hobbies.html#music"><img src="music.gif" alt=music width=100
height=100></a><br>
       <a href="hobbies.html#read"><img src="book.gif" alt=book width=100
height=100></a><br>
</body>
</html>
The above code will reduce the size of the image, and make the web page look more
sensible.

You have some flexibility when displaying images. You can have images separated from
text and aligned to the left or right or centered. Or you can have an image aligned with
text. Try several possibilities to see how your information looks best.

You can align images to the top or center of a paragraph using the ALIGN= attributes
TOP and MIDDLE. i.e.

<img src=”” align=”top/middle”>

Let us take an example, and see how image and text look without align attribute and with
align attribute. First take an example of how image and text look without align attribute.
<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"><img src="soccer.gif" alt=soccer width=100
height=100></a>Soccer<br>
        <a href="hobbies.html#music"><img src="music.gif" alt=music width=100
height=100> </a>Music<br>
        <a href="hobbies.html#read"><img src="book.gif" alt=book width=100
height=100></a>Book<br>
</body>
</html>




So, the output is
My name is Harshit Kumar.
I am teaching at Suwon University
My hobbies are




                Soccer




                MusicMusic




                Book

The output shows that, the text is at the bottom of the image, whereas it looks better to be
text in the middle of the image or at the top of the image.

Let us take another example, and see how text and image text and image look with align
attribute. We have used align=middle.

<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"><img src="soccer.gif" alt=soccer width=100
height=100

align=middle></a>Soccer<br>
       <a href="hobbies.html#music"><img src="music.gif" alt=music width=100
height=100 align=middle></a>Music<br>
       <a href="hobbies.html#read"><img src="book.gif" alt=book width=100
height=100 align=middle></a>Book<br>
</body>
</html>
The output can be seen on the browser.

More Related Content

Viewers also liked

Assignment4
Assignment4Assignment4
Assignment4
H K
 
Lecture2 networkclassification
Lecture2 networkclassificationLecture2 networkclassification
Lecture2 networkclassification
H K
 
Lecture1 introductiontonetwork
Lecture1 introductiontonetworkLecture1 introductiontonetwork
Lecture1 introductiontonetwork
H K
 
Java script frame history
Java script frame historyJava script frame history
Java script frame history
H K
 
Java script frame window
Java script frame windowJava script frame window
Java script frame window
H K
 
Lecture4 isoosi
Lecture4 isoosiLecture4 isoosi
Lecture4 isoosi
H K
 
Html basics 3 font align
Html basics 3 font alignHtml basics 3 font align
Html basics 3 font align
H K
 
Induction
InductionInduction
Induction
H K
 
Html basics 1
Html basics 1Html basics 1
Html basics 1
H K
 
Html basics 10 form
Html basics 10 formHtml basics 10 form
Html basics 10 form
H K
 
Html basics 7 table
Html basics 7 tableHtml basics 7 table
Html basics 7 table
H K
 
Week7
Week7Week7
Week7
H K
 

Viewers also liked (12)

Assignment4
Assignment4Assignment4
Assignment4
 
Lecture2 networkclassification
Lecture2 networkclassificationLecture2 networkclassification
Lecture2 networkclassification
 
Lecture1 introductiontonetwork
Lecture1 introductiontonetworkLecture1 introductiontonetwork
Lecture1 introductiontonetwork
 
Java script frame history
Java script frame historyJava script frame history
Java script frame history
 
Java script frame window
Java script frame windowJava script frame window
Java script frame window
 
Lecture4 isoosi
Lecture4 isoosiLecture4 isoosi
Lecture4 isoosi
 
Html basics 3 font align
Html basics 3 font alignHtml basics 3 font align
Html basics 3 font align
 
Induction
InductionInduction
Induction
 
Html basics 1
Html basics 1Html basics 1
Html basics 1
 
Html basics 10 form
Html basics 10 formHtml basics 10 form
Html basics 10 form
 
Html basics 7 table
Html basics 7 tableHtml basics 7 table
Html basics 7 table
 
Week7
Week7Week7
Week7
 

Similar to Html basics 6 image

Html basics 4 anchor list
Html basics 4 anchor listHtml basics 4 anchor list
Html basics 4 anchor list
H K
 
LIS3353 SP12 Week 4
LIS3353 SP12 Week 4LIS3353 SP12 Week 4
LIS3353 SP12 Week 4
Amanda Case
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
Abzetdin Adamov
 
BEAUTIFUL CSS PRESENTATION EASY TO MADE
BEAUTIFUL CSS PRESENTATION EASY TO MADEBEAUTIFUL CSS PRESENTATION EASY TO MADE
BEAUTIFUL CSS PRESENTATION EASY TO MADE
rana usman
 
HTMLPart 3.pdf
HTMLPart 3.pdfHTMLPart 3.pdf
HTMLPart 3.pdf
TekobashiCarlo
 
Html Hands On
Html Hands OnHtml Hands On
Html Hands On
corneliuskoo
 
Html project report12
Html project report12Html project report12
Html project report12
varunmaini123
 
Bca 1st year HTML Pdf
Bca 1st year HTML Pdf Bca 1st year HTML Pdf
Bca 1st year HTML Pdf
Rahul Saini
 
Html code
Html codeHtml code
Html code
saas14rrr
 
ACTC 2013 Website Building Notes
ACTC 2013 Website Building NotesACTC 2013 Website Building Notes
ACTC 2013 Website Building Notes
John Bentley, II
 
Seo hints
Seo hintsSeo hints
Seo hints
AbidKhan237
 
Html coding
Html codingHtml coding
Html coding
Briana VanBuskirk
 
Html intro
Html introHtml intro
Html intro
Robyn Overstreet
 
Computer language - html links
Computer language - html   linksComputer language - html   links
Computer language - html links
Dr. I. Uma Maheswari Maheswari
 
Css backgrounds
Css   backgroundsCss   backgrounds
Css backgrounds
AbhishekMondal42
 
Html class-02
Html class-02Html class-02
Html class-02
Md Ali Hossain
 
Body Section in HTML - R.D.Sivakumar
Body Section in HTML - R.D.SivakumarBody Section in HTML - R.D.Sivakumar
Body Section in HTML - R.D.Sivakumar
Sivakumar R D .
 

Similar to Html basics 6 image (17)

Html basics 4 anchor list
Html basics 4 anchor listHtml basics 4 anchor list
Html basics 4 anchor list
 
LIS3353 SP12 Week 4
LIS3353 SP12 Week 4LIS3353 SP12 Week 4
LIS3353 SP12 Week 4
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
BEAUTIFUL CSS PRESENTATION EASY TO MADE
BEAUTIFUL CSS PRESENTATION EASY TO MADEBEAUTIFUL CSS PRESENTATION EASY TO MADE
BEAUTIFUL CSS PRESENTATION EASY TO MADE
 
HTMLPart 3.pdf
HTMLPart 3.pdfHTMLPart 3.pdf
HTMLPart 3.pdf
 
Html Hands On
Html Hands OnHtml Hands On
Html Hands On
 
Html project report12
Html project report12Html project report12
Html project report12
 
Bca 1st year HTML Pdf
Bca 1st year HTML Pdf Bca 1st year HTML Pdf
Bca 1st year HTML Pdf
 
Html code
Html codeHtml code
Html code
 
ACTC 2013 Website Building Notes
ACTC 2013 Website Building NotesACTC 2013 Website Building Notes
ACTC 2013 Website Building Notes
 
Seo hints
Seo hintsSeo hints
Seo hints
 
Html coding
Html codingHtml coding
Html coding
 
Html intro
Html introHtml intro
Html intro
 
Computer language - html links
Computer language - html   linksComputer language - html   links
Computer language - html links
 
Css backgrounds
Css   backgroundsCss   backgrounds
Css backgrounds
 
Html class-02
Html class-02Html class-02
Html class-02
 
Body Section in HTML - R.D.Sivakumar
Body Section in HTML - R.D.SivakumarBody Section in HTML - R.D.Sivakumar
Body Section in HTML - R.D.Sivakumar
 

More from H K

Assignment4
Assignment4Assignment4
Assignment4
H K
 
Assignment3
Assignment3Assignment3
Assignment3
H K
 
Solution3
Solution3Solution3
Solution3
H K
 
Mid-
Mid-Mid-
Mid-
H K
 
Assignment4
Assignment4Assignment4
Assignment4
H K
 
Dm assignment3
Dm assignment3Dm assignment3
Dm assignment3
H K
 
Proof
ProofProof
Proof
H K
 
Resolution
ResolutionResolution
Resolution
H K
 
Assignment description
Assignment descriptionAssignment description
Assignment description
H K
 
Dm assignment2
Dm assignment2Dm assignment2
Dm assignment2
H K
 
Dm assignment1
Dm assignment1Dm assignment1
Dm assignment1
H K
 
Logic
LogicLogic
Logic
H K
 
Introduction
IntroductionIntroduction
Introduction
H K
 
Assignment 2 sol
Assignment 2 solAssignment 2 sol
Assignment 2 sol
H K
 
Assignment sw solution
Assignment sw solutionAssignment sw solution
Assignment sw solution
H K
 
Violinphoenix
ViolinphoenixViolinphoenix
Violinphoenix
H K
 
Ie project
Ie projectIe project
Ie project
H K
 
Assignment cn subnetting
Assignment cn subnettingAssignment cn subnetting
Assignment cn subnetting
H K
 
Assignment uplaodfile
Assignment uplaodfileAssignment uplaodfile
Assignment uplaodfile
H K
 
Assignment sw
Assignment swAssignment sw
Assignment swH K
 

More from H K (20)

Assignment4
Assignment4Assignment4
Assignment4
 
Assignment3
Assignment3Assignment3
Assignment3
 
Solution3
Solution3Solution3
Solution3
 
Mid-
Mid-Mid-
Mid-
 
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
 
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

BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
Katrina Pritchard
 
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptxNEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
iammrhaywood
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
Priyankaranawat4
 
How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience
Wahiba Chair Training & Consulting
 
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
imrankhan141184
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
amberjdewit93
 
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching AptitudeUGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
S. Raj Kumar
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
adhitya5119
 
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
Nguyen Thanh Tu Collection
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
Nguyen Thanh Tu Collection
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
Nicholas Montgomery
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
Dr. Mulla Adam Ali
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
adhitya5119
 
Wound healing PPT
Wound healing PPTWound healing PPT
Wound healing PPT
Jyoti Chand
 
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
สมใจ จันสุกสี
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Fajar Baskoro
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
Priyankaranawat4
 
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptxPrésentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
siemaillard
 
How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17
Celine George
 
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skillsspot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
haiqairshad
 

Recently uploaded (20)

BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
 
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptxNEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
 
How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience
 
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
 
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching AptitudeUGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
 
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
 
Wound healing PPT
Wound healing PPTWound healing PPT
Wound healing PPT
 
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
คำศัพท์ คำพื้นฐานการอ่าน ภาษาอังกฤษ ระดับชั้น ม.1
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
 
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptxPrésentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
 
How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17
 
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skillsspot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
 

Html basics 6 image

  • 1. Lecture 7 In this lecture, we will learn about • Using an Image as a Link • Aligning Images Using an Image as a Link I am using three images, for my hobby page. Type the following code and save as .html file. <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"><img src="soccer.gif" alt=soccer></a><br> <a href="hobbies.html#music"><img src="music.gif" alt=music></a><br> <a href="hobbies.html#read"><img src="book.gif" alt=book></a><br> </body> </html> The above code is similar to the previous code, but the only difference is instead of text, now there are images. Earlier clicking on text opens a new page, but now clicking on link will open a new page. Aligning Images With the <img src= > tag, you can specify the width and height of the image i.e. <img src=” “ width=” “ height=” “> <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"><img src="soccer.gif" alt=soccer width=100 height=100></a><br> <a href="hobbies.html#music"><img src="music.gif" alt=music width=100 height=100></a><br> <a href="hobbies.html#read"><img src="book.gif" alt=book width=100 height=100></a><br> </body> </html>
  • 2. The above code will reduce the size of the image, and make the web page look more sensible. You have some flexibility when displaying images. You can have images separated from text and aligned to the left or right or centered. Or you can have an image aligned with text. Try several possibilities to see how your information looks best. You can align images to the top or center of a paragraph using the ALIGN= attributes TOP and MIDDLE. i.e. <img src=”” align=”top/middle”> Let us take an example, and see how image and text look without align attribute and with align attribute. First take an example of how image and text look without align attribute. <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"><img src="soccer.gif" alt=soccer width=100 height=100></a>Soccer<br> <a href="hobbies.html#music"><img src="music.gif" alt=music width=100 height=100> </a>Music<br> <a href="hobbies.html#read"><img src="book.gif" alt=book width=100 height=100></a>Book<br> </body> </html> So, the output is
  • 3. My name is Harshit Kumar. I am teaching at Suwon University My hobbies are Soccer MusicMusic Book The output shows that, the text is at the bottom of the image, whereas it looks better to be text in the middle of the image or at the top of the image. Let us take another example, and see how text and image text and image look with align attribute. We have used align=middle. <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"><img src="soccer.gif" alt=soccer width=100 height=100 align=middle></a>Soccer<br> <a href="hobbies.html#music"><img src="music.gif" alt=music width=100 height=100 align=middle></a>Music<br> <a href="hobbies.html#read"><img src="book.gif" alt=book width=100 height=100 align=middle></a>Book<br> </body> </html> The output can be seen on the browser.