SlideShare a Scribd company logo
WEB DEVELOPMENT BASICS
KALLURI VINAY REDDY
12MSE1013
VIT CHENNAI
by
HTML AND CSS
LECTURE 3
TOPICS
LECTURE 3
1. IMAGES AND LINKS
2. ORDERED LIST
3. UNORDERED LIST
4. LIST INSIDE A LIST
IMAGES WITH LINKS
• Till now we have seen how to add images in the web site.
• But now we will have redirect in to another webpage when
we click on that image it is the most and common one we
seen in almost every webpages.
IMAGE THAT LEADS TO ANOTHER PAGE
<!DOCTYPE html>
<html>
<head>
<title>
</title>
</head>
<body>
<a href="http://www.codecademy.com">
<img src="http://s3.amazonaws.com/codecademy-blog/assets/f3a16fb6.jpg" />
</a>
</body>
</html>
ORDERED LIST
Let's continue learning more HTML. You've already covered a lot
In this course, I will take it to the next level:
a. Making ordered and unordered lists
b. list inside a list
ORDERED LIST
• Ordered list is simply a list that is numbered which will be explained in the
example.
• The opening of the ordered list is followed by <ol> </ol>.
• Inside the <ol> the list what ever you want to write can be done in this section.
• It follows as <li> </li> this follows the list sequence and gives number
according the order it goes.
• It is very basic that to remembered through out the course
SAMPLE CODE
<!DOCTYPE html>
<html>
<head>
<title>Lists</title>
</head>
<body>
<h1>List of my favorite things</h1>
<ol>
<li>raindrops on roses</li>
<li>whiskas on kittens</li>
<li>call of duty: modern warfare</li>
</ol>
<h2>List of things i find OK!</h2>
<ol>
<li>i like to be a great lover</li>
<li>i like to be a great software engineer</li>
<li>i like to be great man </li>
</ol>
UNORDERED LIST
• We just learned how to make ordered lists, but if the order doesn’t matter, what
if we just want the bullet points?
• Ans: unordered list
STEPS:
• 1. First, we open our list with an unordered list <ul> tag.
• 2. For each item we wish to add to the list, we use a list item tag <li> with text
between them.
• 3.We then tell the browser we are done with our list by calling our closing
</ul> tag
SAMPLE CODE
<!DOCTYPE html>
<html>
<head>
<title>Unordered Lists</title>
</head>
<body>
<h1>create random list</h1>
<p>the random list for the unorder</p>
<ul>
<li>m</li>
<li>n</li>
<li>ee</li>
<li>ert</li>
</ul>
</body>
</html>
LIST INSIDE IN LIST
• Little bit of confusion but very interesting in adding
them to the ordered list and unordered list.
SAMPLE CODE FOR
ORDERED LIST
<!DOCTYPE html>
<html>
<head>
<title>Nested lists</title>
</head>
<body>
<ol>
<li>Dad's interests
<ul>
<li>football</li>
<li>knitting</li>
</ul>
</li>
<li>Mom's interests
<ul>
<li>hating football</li>
<li>skydiving</li>
</ul>
</li> </ol> </body> </html>
SAMPLE CODE FOR
UNORDERED LIST
<!DOCTYPE html>
<html>
<head>
<title>Nested lists in unordered list</title>
</head>
<body>
<li>Favorite food</li>
<ol>
<li>chicken</li>
<li>hyderabad dum ki biryani</li>
</ol>
<li>Favorite singers</li>
<ol>
<li>sp balasubramanyam</li>
<li>DSP</li>
</ol>
</ul> </body> </html>
MAKING COMMENTS
<html>
<body>Make me into a comment
<p>But leave me visible to the user!
</p>
<!--Make me into a comment.-->
</body>
</html>
REFERENCES
• www.codecademy.com
Head first web design .
Learning web design-Jennifer Niederst Robbins
www.w3schools.com
Thank you
Any doubts
Email: kalluri.vinayreddy@gmail.com

More Related Content

What's hot (20)

Exploring the WordPress Dashboard and How to Pick & Install Plugins
Exploring the WordPress Dashboard and How to Pick & Install PluginsExploring the WordPress Dashboard and How to Pick & Install Plugins
Exploring the WordPress Dashboard and How to Pick & Install Plugins
Rich Plakas
 
HTML and blogging lesson 1
HTML and blogging lesson 1HTML and blogging lesson 1
HTML and blogging lesson 1
MrsAtherton
 
HTML Coding #01 : Don't Fear the Code
HTML Coding #01 : Don't Fear the CodeHTML Coding #01 : Don't Fear the Code
HTML Coding #01 : Don't Fear the Code
Michael Sturgeon
 
Scout web
Scout webScout web
Scout web
cciotti3
 
Blogpreneurship Video1
Blogpreneurship  Video1Blogpreneurship  Video1
Blogpreneurship Video1
prajwalnshinde
 
Use WordPress to become a social proprietor
Use WordPress to become a social proprietorUse WordPress to become a social proprietor
Use WordPress to become a social proprietor
Terry Heenan
 
Creating and Posting on Blogger
Creating and Posting on BloggerCreating and Posting on Blogger
Creating and Posting on Blogger
Patricia Fancher
 
Building the basics (WordPress Ottawa 2014)
Building the basics (WordPress Ottawa 2014)Building the basics (WordPress Ottawa 2014)
Building the basics (WordPress Ottawa 2014)
Christopher Ross
 
Do it-yourself WordPress Website & SEO Workshop - june 25, 2014
Do it-yourself WordPress Website & SEO Workshop - june 25, 2014Do it-yourself WordPress Website & SEO Workshop - june 25, 2014
Do it-yourself WordPress Website & SEO Workshop - june 25, 2014
Ella J Designs
 
What PressBooks Does to WordPress
What PressBooks Does to WordPressWhat PressBooks Does to WordPress
What PressBooks Does to WordPress
Hugh McGuire
 
UCBCHL - Guide to creating your online presence with Wordpress
UCBCHL - Guide to creating your online presence with Wordpress UCBCHL - Guide to creating your online presence with Wordpress
UCBCHL - Guide to creating your online presence with Wordpress
Dan Cohen
 
How To: Introduction To Blogging
How To: Introduction To BloggingHow To: Introduction To Blogging
How To: Introduction To Blogging
Jon Clark
 
Blogging is not dead
Blogging is not deadBlogging is not dead
Blogging is not dead
rlabsza
 
Getting Started With WordPress Development
Getting Started With WordPress DevelopmentGetting Started With WordPress Development
Getting Started With WordPress Development
Andy Brudtkuhl
 
Tips And Zips Part 1
Tips And Zips Part 1Tips And Zips Part 1
Tips And Zips Part 1
ql.things
 
Let's make a website together - an introduction to WordPress
Let's make a website together - an introduction to WordPressLet's make a website together - an introduction to WordPress
Let's make a website together - an introduction to WordPress
Kayleigh Thorpe
 
Blogging Presentation
Blogging PresentationBlogging Presentation
Blogging Presentation
ajaymehta
 
Day One - Setting Up Your Blog
Day One - Setting Up Your BlogDay One - Setting Up Your Blog
Day One - Setting Up Your Blog
Martin Harrison
 
Making WordPress Fly with Jetpack
Making WordPress Fly with JetpackMaking WordPress Fly with Jetpack
Making WordPress Fly with Jetpack
Kayleigh Thorpe
 
WP 201 Custom Post Types - Custom Fields - WordCamp Columbus 2015
WP 201   Custom Post Types - Custom Fields - WordCamp Columbus 2015WP 201   Custom Post Types - Custom Fields - WordCamp Columbus 2015
WP 201 Custom Post Types - Custom Fields - WordCamp Columbus 2015
Joe Querin
 
Exploring the WordPress Dashboard and How to Pick & Install Plugins
Exploring the WordPress Dashboard and How to Pick & Install PluginsExploring the WordPress Dashboard and How to Pick & Install Plugins
Exploring the WordPress Dashboard and How to Pick & Install Plugins
Rich Plakas
 
HTML and blogging lesson 1
HTML and blogging lesson 1HTML and blogging lesson 1
HTML and blogging lesson 1
MrsAtherton
 
HTML Coding #01 : Don't Fear the Code
HTML Coding #01 : Don't Fear the CodeHTML Coding #01 : Don't Fear the Code
HTML Coding #01 : Don't Fear the Code
Michael Sturgeon
 
Blogpreneurship Video1
Blogpreneurship  Video1Blogpreneurship  Video1
Blogpreneurship Video1
prajwalnshinde
 
Use WordPress to become a social proprietor
Use WordPress to become a social proprietorUse WordPress to become a social proprietor
Use WordPress to become a social proprietor
Terry Heenan
 
Creating and Posting on Blogger
Creating and Posting on BloggerCreating and Posting on Blogger
Creating and Posting on Blogger
Patricia Fancher
 
Building the basics (WordPress Ottawa 2014)
Building the basics (WordPress Ottawa 2014)Building the basics (WordPress Ottawa 2014)
Building the basics (WordPress Ottawa 2014)
Christopher Ross
 
Do it-yourself WordPress Website & SEO Workshop - june 25, 2014
Do it-yourself WordPress Website & SEO Workshop - june 25, 2014Do it-yourself WordPress Website & SEO Workshop - june 25, 2014
Do it-yourself WordPress Website & SEO Workshop - june 25, 2014
Ella J Designs
 
What PressBooks Does to WordPress
What PressBooks Does to WordPressWhat PressBooks Does to WordPress
What PressBooks Does to WordPress
Hugh McGuire
 
UCBCHL - Guide to creating your online presence with Wordpress
UCBCHL - Guide to creating your online presence with Wordpress UCBCHL - Guide to creating your online presence with Wordpress
UCBCHL - Guide to creating your online presence with Wordpress
Dan Cohen
 
How To: Introduction To Blogging
How To: Introduction To BloggingHow To: Introduction To Blogging
How To: Introduction To Blogging
Jon Clark
 
Blogging is not dead
Blogging is not deadBlogging is not dead
Blogging is not dead
rlabsza
 
Getting Started With WordPress Development
Getting Started With WordPress DevelopmentGetting Started With WordPress Development
Getting Started With WordPress Development
Andy Brudtkuhl
 
Tips And Zips Part 1
Tips And Zips Part 1Tips And Zips Part 1
Tips And Zips Part 1
ql.things
 
Let's make a website together - an introduction to WordPress
Let's make a website together - an introduction to WordPressLet's make a website together - an introduction to WordPress
Let's make a website together - an introduction to WordPress
Kayleigh Thorpe
 
Blogging Presentation
Blogging PresentationBlogging Presentation
Blogging Presentation
ajaymehta
 
Day One - Setting Up Your Blog
Day One - Setting Up Your BlogDay One - Setting Up Your Blog
Day One - Setting Up Your Blog
Martin Harrison
 
Making WordPress Fly with Jetpack
Making WordPress Fly with JetpackMaking WordPress Fly with Jetpack
Making WordPress Fly with Jetpack
Kayleigh Thorpe
 
WP 201 Custom Post Types - Custom Fields - WordCamp Columbus 2015
WP 201   Custom Post Types - Custom Fields - WordCamp Columbus 2015WP 201   Custom Post Types - Custom Fields - WordCamp Columbus 2015
WP 201 Custom Post Types - Custom Fields - WordCamp Columbus 2015
Joe Querin
 

Similar to Web development basics2 (20)

Week 2 html
Week 2   htmlWeek 2   html
Week 2 html
brianjihoonlee
 
Web 101 intro to html
Web 101  intro to htmlWeb 101  intro to html
Web 101 intro to html
Hawkman Academy
 
Take Your Markup to 11
Take Your Markup to 11Take Your Markup to 11
Take Your Markup to 11
Emily Lewis
 
Web development basics
Web development basicsWeb development basics
Web development basics
Kalluri Vinay Reddy
 
Html5 quick-learning-quide
Html5 quick-learning-quideHtml5 quick-learning-quide
Html5 quick-learning-quide
Ashok Suragala
 
Html5 quick-learning-quide
Html5 quick-learning-quideHtml5 quick-learning-quide
Html5 quick-learning-quide
PL dream
 
Html5 quick learning guide
Html5 quick learning guideHtml5 quick learning guide
Html5 quick learning guide
Prima Utama Apriansyah
 
Html5 quick-learning-quide
Html5 quick-learning-quideHtml5 quick-learning-quide
Html5 quick-learning-quide
Jerry Wijaya
 
LIS3353 SP12 Week 4
LIS3353 SP12 Week 4LIS3353 SP12 Week 4
LIS3353 SP12 Week 4
Amanda Case
 
HTML presentation
HTML presentationHTML presentation
HTML presentation
THABISO BALOYI
 
BASIC HTML PRESENTATION
BASIC HTML PRESENTATIONBASIC HTML PRESENTATION
BASIC HTML PRESENTATION
THABISO BALOYI
 
Rd.Html
Rd.HtmlRd.Html
Rd.Html
Ram Dutt Shukla
 
HTML5 & CSS3 Flag
HTML5 & CSS3 FlagHTML5 & CSS3 Flag
HTML5 & CSS3 Flag
Christopher Schmitt
 
Html css crash course may 11th, atlanta
Html css crash course may 11th, atlantaHtml css crash course may 11th, atlanta
Html css crash course may 11th, atlanta
Thinkful
 
NEW HTML POINTS AND HTML BASICS WITH NEW TOPICS
NEW HTML POINTS AND HTML BASICS WITH NEW TOPICSNEW HTML POINTS AND HTML BASICS WITH NEW TOPICS
NEW HTML POINTS AND HTML BASICS WITH NEW TOPICS
demomki4
 
What is HTML? How do we Write it? Check out this Quick Guide from Web Courses...
What is HTML? How do we Write it? Check out this Quick Guide from Web Courses...What is HTML? How do we Write it? Check out this Quick Guide from Web Courses...
What is HTML? How do we Write it? Check out this Quick Guide from Web Courses...
Carl Heaton
 
Converted-bffbudurururyryrydgsjdjsusussj
Converted-bffbudurururyryrydgsjdjsusussjConverted-bffbudurururyryrydgsjdjsusussj
Converted-bffbudurururyryrydgsjdjsusussj
vallichandran1302
 
html1 (2).ppt html are very simple markup language
html1 (2).ppt html are very simple markup languagehtml1 (2).ppt html are very simple markup language
html1 (2).ppt html are very simple markup language
chauhanak1200
 
Web Design-III IT.ppt
Web Design-III IT.pptWeb Design-III IT.ppt
Web Design-III IT.ppt
banu236831
 
HTML/CSS Workshop @ Searchcamp
HTML/CSS Workshop @ SearchcampHTML/CSS Workshop @ Searchcamp
HTML/CSS Workshop @ Searchcamp
James Mills
 
Take Your Markup to 11
Take Your Markup to 11Take Your Markup to 11
Take Your Markup to 11
Emily Lewis
 
Html5 quick-learning-quide
Html5 quick-learning-quideHtml5 quick-learning-quide
Html5 quick-learning-quide
Ashok Suragala
 
Html5 quick-learning-quide
Html5 quick-learning-quideHtml5 quick-learning-quide
Html5 quick-learning-quide
PL dream
 
Html5 quick-learning-quide
Html5 quick-learning-quideHtml5 quick-learning-quide
Html5 quick-learning-quide
Jerry Wijaya
 
LIS3353 SP12 Week 4
LIS3353 SP12 Week 4LIS3353 SP12 Week 4
LIS3353 SP12 Week 4
Amanda Case
 
BASIC HTML PRESENTATION
BASIC HTML PRESENTATIONBASIC HTML PRESENTATION
BASIC HTML PRESENTATION
THABISO BALOYI
 
Html css crash course may 11th, atlanta
Html css crash course may 11th, atlantaHtml css crash course may 11th, atlanta
Html css crash course may 11th, atlanta
Thinkful
 
NEW HTML POINTS AND HTML BASICS WITH NEW TOPICS
NEW HTML POINTS AND HTML BASICS WITH NEW TOPICSNEW HTML POINTS AND HTML BASICS WITH NEW TOPICS
NEW HTML POINTS AND HTML BASICS WITH NEW TOPICS
demomki4
 
What is HTML? How do we Write it? Check out this Quick Guide from Web Courses...
What is HTML? How do we Write it? Check out this Quick Guide from Web Courses...What is HTML? How do we Write it? Check out this Quick Guide from Web Courses...
What is HTML? How do we Write it? Check out this Quick Guide from Web Courses...
Carl Heaton
 
Converted-bffbudurururyryrydgsjdjsusussj
Converted-bffbudurururyryrydgsjdjsusussjConverted-bffbudurururyryrydgsjdjsusussj
Converted-bffbudurururyryrydgsjdjsusussj
vallichandran1302
 
html1 (2).ppt html are very simple markup language
html1 (2).ppt html are very simple markup languagehtml1 (2).ppt html are very simple markup language
html1 (2).ppt html are very simple markup language
chauhanak1200
 
Web Design-III IT.ppt
Web Design-III IT.pptWeb Design-III IT.ppt
Web Design-III IT.ppt
banu236831
 
HTML/CSS Workshop @ Searchcamp
HTML/CSS Workshop @ SearchcampHTML/CSS Workshop @ Searchcamp
HTML/CSS Workshop @ Searchcamp
James Mills
 

More from Kalluri Vinay Reddy (12)

Chapter 2 lesson-2 styling the action bar
Chapter 2 lesson-2 styling the action barChapter 2 lesson-2 styling the action bar
Chapter 2 lesson-2 styling the action bar
Kalluri Vinay Reddy
 
Chapter 2 lesson-1 adding the action bar
Chapter 2 lesson-1 adding the action barChapter 2 lesson-1 adding the action bar
Chapter 2 lesson-1 adding the action bar
Kalluri Vinay Reddy
 
Create an other activity lesson 3
Create an other activity lesson 3Create an other activity lesson 3
Create an other activity lesson 3
Kalluri Vinay Reddy
 
Building a simple user interface lesson2
Building a simple user interface lesson2Building a simple user interface lesson2
Building a simple user interface lesson2
Kalluri Vinay Reddy
 
Android app development lesson 1
Android app development lesson 1Android app development lesson 1
Android app development lesson 1
Kalluri Vinay Reddy
 
Social media marketing
Social media marketingSocial media marketing
Social media marketing
Kalluri Vinay Reddy
 
Data Centers and Internet
Data Centers and InternetData Centers and Internet
Data Centers and Internet
Kalluri Vinay Reddy
 
Frame relay
Frame relayFrame relay
Frame relay
Kalluri Vinay Reddy
 
web development basics tables part2
web development basics tables part2web development basics tables part2
web development basics tables part2
Kalluri Vinay Reddy
 
Web development basics 3
Web development basics 3Web development basics 3
Web development basics 3
Kalluri Vinay Reddy
 
Android basic
Android basicAndroid basic
Android basic
Kalluri Vinay Reddy
 
Inside Google
Inside Google Inside Google
Inside Google
Kalluri Vinay Reddy
 

Recently uploaded (20)

New Microsoft PowerPoint Presentation.pptx
New Microsoft PowerPoint Presentation.pptxNew Microsoft PowerPoint Presentation.pptx
New Microsoft PowerPoint Presentation.pptx
milanasargsyan5
 
How to Set warnings for invoicing specific customers in odoo
How to Set warnings for invoicing specific customers in odooHow to Set warnings for invoicing specific customers in odoo
How to Set warnings for invoicing specific customers in odoo
Celine George
 
To study Digestive system of insect.pptx
To study Digestive system of insect.pptxTo study Digestive system of insect.pptx
To study Digestive system of insect.pptx
Arshad Shaikh
 
GDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptxGDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptx
azeenhodekar
 
Geography Sem II Unit 1C Correlation of Geography with other school subjects
Geography Sem II Unit 1C Correlation of Geography with other school subjectsGeography Sem II Unit 1C Correlation of Geography with other school subjects
Geography Sem II Unit 1C Correlation of Geography with other school subjects
ProfDrShaikhImran
 
Biophysics Chapter 3 Methods of Studying Macromolecules.pdf
Biophysics Chapter 3 Methods of Studying Macromolecules.pdfBiophysics Chapter 3 Methods of Studying Macromolecules.pdf
Biophysics Chapter 3 Methods of Studying Macromolecules.pdf
PKLI-Institute of Nursing and Allied Health Sciences Lahore , Pakistan.
 
apa-style-referencing-visual-guide-2025.pdf
apa-style-referencing-visual-guide-2025.pdfapa-style-referencing-visual-guide-2025.pdf
apa-style-referencing-visual-guide-2025.pdf
Ishika Ghosh
 
Sinhala_Male_Names.pdf Sinhala_Male_Name
Sinhala_Male_Names.pdf Sinhala_Male_NameSinhala_Male_Names.pdf Sinhala_Male_Name
Sinhala_Male_Names.pdf Sinhala_Male_Name
keshanf79
 
pulse ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
pulse  ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulsepulse  ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
pulse ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
sushreesangita003
 
Marie Boran Special Collections Librarian Hardiman Library, University of Gal...
Marie Boran Special Collections Librarian Hardiman Library, University of Gal...Marie Boran Special Collections Librarian Hardiman Library, University of Gal...
Marie Boran Special Collections Librarian Hardiman Library, University of Gal...
Library Association of Ireland
 
SPRING FESTIVITIES - UK AND USA -
SPRING FESTIVITIES - UK AND USA            -SPRING FESTIVITIES - UK AND USA            -
SPRING FESTIVITIES - UK AND USA -
Colégio Santa Teresinha
 
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptxSCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
Ronisha Das
 
Operations Management (Dr. Abdulfatah Salem).pdf
Operations Management (Dr. Abdulfatah Salem).pdfOperations Management (Dr. Abdulfatah Salem).pdf
Operations Management (Dr. Abdulfatah Salem).pdf
Arab Academy for Science, Technology and Maritime Transport
 
UNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACY
UNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACYUNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACY
UNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACY
DR.PRISCILLA MARY J
 
Presentation on Tourism Product Development By Md Shaifullar Rabbi
Presentation on Tourism Product Development By Md Shaifullar RabbiPresentation on Tourism Product Development By Md Shaifullar Rabbi
Presentation on Tourism Product Development By Md Shaifullar Rabbi
Md Shaifullar Rabbi
 
LDMMIA Reiki Master Spring 2025 Mini Updates
LDMMIA Reiki Master Spring 2025 Mini UpdatesLDMMIA Reiki Master Spring 2025 Mini Updates
LDMMIA Reiki Master Spring 2025 Mini Updates
LDM Mia eStudios
 
P-glycoprotein pamphlet: iteration 4 of 4 final
P-glycoprotein pamphlet: iteration 4 of 4 finalP-glycoprotein pamphlet: iteration 4 of 4 final
P-glycoprotein pamphlet: iteration 4 of 4 final
bs22n2s
 
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Library Association of Ireland
 
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Library Association of Ireland
 
The ever evoilving world of science /7th class science curiosity /samyans aca...
The ever evoilving world of science /7th class science curiosity /samyans aca...The ever evoilving world of science /7th class science curiosity /samyans aca...
The ever evoilving world of science /7th class science curiosity /samyans aca...
Sandeep Swamy
 
New Microsoft PowerPoint Presentation.pptx
New Microsoft PowerPoint Presentation.pptxNew Microsoft PowerPoint Presentation.pptx
New Microsoft PowerPoint Presentation.pptx
milanasargsyan5
 
How to Set warnings for invoicing specific customers in odoo
How to Set warnings for invoicing specific customers in odooHow to Set warnings for invoicing specific customers in odoo
How to Set warnings for invoicing specific customers in odoo
Celine George
 
To study Digestive system of insect.pptx
To study Digestive system of insect.pptxTo study Digestive system of insect.pptx
To study Digestive system of insect.pptx
Arshad Shaikh
 
GDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptxGDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptx
azeenhodekar
 
Geography Sem II Unit 1C Correlation of Geography with other school subjects
Geography Sem II Unit 1C Correlation of Geography with other school subjectsGeography Sem II Unit 1C Correlation of Geography with other school subjects
Geography Sem II Unit 1C Correlation of Geography with other school subjects
ProfDrShaikhImran
 
apa-style-referencing-visual-guide-2025.pdf
apa-style-referencing-visual-guide-2025.pdfapa-style-referencing-visual-guide-2025.pdf
apa-style-referencing-visual-guide-2025.pdf
Ishika Ghosh
 
Sinhala_Male_Names.pdf Sinhala_Male_Name
Sinhala_Male_Names.pdf Sinhala_Male_NameSinhala_Male_Names.pdf Sinhala_Male_Name
Sinhala_Male_Names.pdf Sinhala_Male_Name
keshanf79
 
pulse ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
pulse  ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulsepulse  ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
pulse ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
sushreesangita003
 
Marie Boran Special Collections Librarian Hardiman Library, University of Gal...
Marie Boran Special Collections Librarian Hardiman Library, University of Gal...Marie Boran Special Collections Librarian Hardiman Library, University of Gal...
Marie Boran Special Collections Librarian Hardiman Library, University of Gal...
Library Association of Ireland
 
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptxSCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
Ronisha Das
 
UNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACY
UNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACYUNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACY
UNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACY
DR.PRISCILLA MARY J
 
Presentation on Tourism Product Development By Md Shaifullar Rabbi
Presentation on Tourism Product Development By Md Shaifullar RabbiPresentation on Tourism Product Development By Md Shaifullar Rabbi
Presentation on Tourism Product Development By Md Shaifullar Rabbi
Md Shaifullar Rabbi
 
LDMMIA Reiki Master Spring 2025 Mini Updates
LDMMIA Reiki Master Spring 2025 Mini UpdatesLDMMIA Reiki Master Spring 2025 Mini Updates
LDMMIA Reiki Master Spring 2025 Mini Updates
LDM Mia eStudios
 
P-glycoprotein pamphlet: iteration 4 of 4 final
P-glycoprotein pamphlet: iteration 4 of 4 finalP-glycoprotein pamphlet: iteration 4 of 4 final
P-glycoprotein pamphlet: iteration 4 of 4 final
bs22n2s
 
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Library Association of Ireland
 
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Library Association of Ireland
 
The ever evoilving world of science /7th class science curiosity /samyans aca...
The ever evoilving world of science /7th class science curiosity /samyans aca...The ever evoilving world of science /7th class science curiosity /samyans aca...
The ever evoilving world of science /7th class science curiosity /samyans aca...
Sandeep Swamy
 

Web development basics2

  • 1. WEB DEVELOPMENT BASICS KALLURI VINAY REDDY 12MSE1013 VIT CHENNAI by
  • 3. TOPICS LECTURE 3 1. IMAGES AND LINKS 2. ORDERED LIST 3. UNORDERED LIST 4. LIST INSIDE A LIST
  • 4. IMAGES WITH LINKS • Till now we have seen how to add images in the web site. • But now we will have redirect in to another webpage when we click on that image it is the most and common one we seen in almost every webpages.
  • 5. IMAGE THAT LEADS TO ANOTHER PAGE <!DOCTYPE html> <html> <head> <title> </title> </head> <body> <a href="http://www.codecademy.com"> <img src="http://s3.amazonaws.com/codecademy-blog/assets/f3a16fb6.jpg" /> </a> </body> </html>
  • 6. ORDERED LIST Let's continue learning more HTML. You've already covered a lot In this course, I will take it to the next level: a. Making ordered and unordered lists b. list inside a list
  • 7. ORDERED LIST • Ordered list is simply a list that is numbered which will be explained in the example. • The opening of the ordered list is followed by <ol> </ol>. • Inside the <ol> the list what ever you want to write can be done in this section. • It follows as <li> </li> this follows the list sequence and gives number according the order it goes. • It is very basic that to remembered through out the course
  • 8. SAMPLE CODE <!DOCTYPE html> <html> <head> <title>Lists</title> </head> <body> <h1>List of my favorite things</h1> <ol> <li>raindrops on roses</li> <li>whiskas on kittens</li> <li>call of duty: modern warfare</li> </ol> <h2>List of things i find OK!</h2> <ol> <li>i like to be a great lover</li> <li>i like to be a great software engineer</li> <li>i like to be great man </li> </ol>
  • 9. UNORDERED LIST • We just learned how to make ordered lists, but if the order doesn’t matter, what if we just want the bullet points? • Ans: unordered list
  • 10. STEPS: • 1. First, we open our list with an unordered list <ul> tag. • 2. For each item we wish to add to the list, we use a list item tag <li> with text between them. • 3.We then tell the browser we are done with our list by calling our closing </ul> tag
  • 11. SAMPLE CODE <!DOCTYPE html> <html> <head> <title>Unordered Lists</title> </head> <body> <h1>create random list</h1> <p>the random list for the unorder</p> <ul> <li>m</li> <li>n</li> <li>ee</li> <li>ert</li> </ul> </body> </html>
  • 12. LIST INSIDE IN LIST • Little bit of confusion but very interesting in adding them to the ordered list and unordered list.
  • 13. SAMPLE CODE FOR ORDERED LIST <!DOCTYPE html> <html> <head> <title>Nested lists</title> </head> <body> <ol> <li>Dad's interests <ul> <li>football</li> <li>knitting</li> </ul> </li> <li>Mom's interests <ul> <li>hating football</li> <li>skydiving</li> </ul> </li> </ol> </body> </html>
  • 14. SAMPLE CODE FOR UNORDERED LIST <!DOCTYPE html> <html> <head> <title>Nested lists in unordered list</title> </head> <body> <li>Favorite food</li> <ol> <li>chicken</li> <li>hyderabad dum ki biryani</li> </ol> <li>Favorite singers</li> <ol> <li>sp balasubramanyam</li> <li>DSP</li> </ol> </ul> </body> </html>
  • 15. MAKING COMMENTS <html> <body>Make me into a comment <p>But leave me visible to the user! </p> <!--Make me into a comment.--> </body> </html>
  • 16. REFERENCES • www.codecademy.com Head first web design . Learning web design-Jennifer Niederst Robbins www.w3schools.com