SlideShare una empresa de Scribd logo
1 de 17
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

Más contenido relacionado

La actualidad más candente

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 PluginsRich Plakas
 
HTML and blogging lesson 1
HTML and blogging lesson 1HTML and blogging lesson 1
HTML and blogging lesson 1MrsAtherton
 
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 CodeMichael Sturgeon
 
Blogpreneurship Video1
Blogpreneurship  Video1Blogpreneurship  Video1
Blogpreneurship Video1prajwalnshinde
 
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 proprietorTerry Heenan
 
Creating and Posting on Blogger
Creating and Posting on BloggerCreating and Posting on Blogger
Creating and Posting on BloggerPatricia 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)christopherfross
 
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, 2014Ella J Designs
 
What PressBooks Does to WordPress
What PressBooks Does to WordPressWhat PressBooks Does to WordPress
What PressBooks Does to WordPressHugh 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 BloggingJon Clark
 
Blogging is not dead
Blogging is not deadBlogging is not dead
Blogging is not deadrlabsza
 
Getting Started With WordPress Development
Getting Started With WordPress DevelopmentGetting Started With WordPress Development
Getting Started With WordPress DevelopmentAndy Brudtkuhl
 
Tips And Zips Part 1
Tips And Zips Part 1Tips And Zips Part 1
Tips And Zips Part 1ql.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 WordPressKayleigh Thorpe
 
Blogging Presentation
Blogging PresentationBlogging Presentation
Blogging Presentationajaymehta
 
Day One - Setting Up Your Blog
Day One - Setting Up Your BlogDay One - Setting Up Your Blog
Day One - Setting Up Your BlogMartin Harrison
 
Making WordPress Fly with Jetpack
Making WordPress Fly with JetpackMaking WordPress Fly with Jetpack
Making WordPress Fly with JetpackKayleigh 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 2015Joe Querin
 

La actualidad más candente (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
 
HTML and blogging lesson 1
HTML and blogging lesson 1HTML and blogging lesson 1
HTML and blogging lesson 1
 
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
 
Scout web
Scout webScout web
Scout web
 
Blogpreneurship Video1
Blogpreneurship  Video1Blogpreneurship  Video1
Blogpreneurship Video1
 
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
 
Creating and Posting on Blogger
Creating and Posting on BloggerCreating and Posting on Blogger
Creating and Posting on Blogger
 
Building the basics (WordPress Ottawa 2014)
Building the basics (WordPress Ottawa 2014)Building the basics (WordPress Ottawa 2014)
Building the basics (WordPress Ottawa 2014)
 
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
 
What PressBooks Does to WordPress
What PressBooks Does to WordPressWhat PressBooks Does to WordPress
What PressBooks Does to 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
UCBCHL - Guide to creating your online presence with Wordpress
 
How To: Introduction To Blogging
How To: Introduction To BloggingHow To: Introduction To Blogging
How To: Introduction To Blogging
 
Blogging is not dead
Blogging is not deadBlogging is not dead
Blogging is not dead
 
Getting Started With WordPress Development
Getting Started With WordPress DevelopmentGetting Started With WordPress Development
Getting Started With WordPress Development
 
Tips And Zips Part 1
Tips And Zips Part 1Tips And Zips Part 1
Tips And Zips Part 1
 
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
 
Blogging Presentation
Blogging PresentationBlogging Presentation
Blogging Presentation
 
Day One - Setting Up Your Blog
Day One - Setting Up Your BlogDay One - Setting Up Your Blog
Day One - Setting Up Your Blog
 
Making WordPress Fly with Jetpack
Making WordPress Fly with JetpackMaking WordPress Fly with Jetpack
Making WordPress Fly with Jetpack
 
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
 

Similar a Web development basics2

Take Your Markup to 11
Take Your Markup to 11Take Your Markup to 11
Take Your Markup to 11Emily Lewis
 
Html5 quick-learning-quide
Html5 quick-learning-quideHtml5 quick-learning-quide
Html5 quick-learning-quideAshok Suragala
 
Html5 quick-learning-quide
Html5 quick-learning-quideHtml5 quick-learning-quide
Html5 quick-learning-quideJerry Wijaya
 
Html5 quick-learning-quide
Html5 quick-learning-quideHtml5 quick-learning-quide
Html5 quick-learning-quidePL dream
 
LIS3353 SP12 Week 4
LIS3353 SP12 Week 4LIS3353 SP12 Week 4
LIS3353 SP12 Week 4Amanda Case
 
BASIC HTML PRESENTATION
BASIC HTML PRESENTATIONBASIC HTML PRESENTATION
BASIC HTML PRESENTATIONTHABISO 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, atlantaThinkful
 
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
 
Web Design-III IT.ppt
Web Design-III IT.pptWeb Design-III IT.ppt
Web Design-III IT.pptbanu236831
 
HTML/CSS Workshop @ Searchcamp
HTML/CSS Workshop @ SearchcampHTML/CSS Workshop @ Searchcamp
HTML/CSS Workshop @ SearchcampJames Mills
 
Basic CSS concepts by naveen kumar veligeti
Basic CSS concepts by naveen kumar veligetiBasic CSS concepts by naveen kumar veligeti
Basic CSS concepts by naveen kumar veligetiNaveen Kumar Veligeti
 
Theme Kickstart
Theme KickstartTheme Kickstart
Theme KickstartPeter
 

Similar a Web development basics2 (20)

Week 2 html
Week 2   htmlWeek 2   html
Week 2 html
 
Web 101 intro to html
Web 101  intro to htmlWeb 101  intro to html
Web 101 intro to html
 
Take Your Markup to 11
Take Your Markup to 11Take Your Markup to 11
Take Your Markup to 11
 
Web development basics
Web development basicsWeb development basics
Web development basics
 
Html5 quick learning guide
Html5 quick learning guideHtml5 quick learning guide
Html5 quick learning guide
 
Html5 quick-learning-quide
Html5 quick-learning-quideHtml5 quick-learning-quide
Html5 quick-learning-quide
 
Html5 quick-learning-quide
Html5 quick-learning-quideHtml5 quick-learning-quide
Html5 quick-learning-quide
 
Html5 quick-learning-quide
Html5 quick-learning-quideHtml5 quick-learning-quide
Html5 quick-learning-quide
 
LIS3353 SP12 Week 4
LIS3353 SP12 Week 4LIS3353 SP12 Week 4
LIS3353 SP12 Week 4
 
BASIC HTML PRESENTATION
BASIC HTML PRESENTATIONBASIC HTML PRESENTATION
BASIC HTML PRESENTATION
 
HTML presentation
HTML presentationHTML presentation
HTML presentation
 
Rd.Html
Rd.HtmlRd.Html
Rd.Html
 
HTML5 & CSS3 Flag
HTML5 & CSS3 FlagHTML5 & CSS3 Flag
HTML5 & CSS3 Flag
 
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
 
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...
 
Web Design-III IT.ppt
Web Design-III IT.pptWeb Design-III IT.ppt
Web Design-III IT.ppt
 
HTML/CSS Workshop @ Searchcamp
HTML/CSS Workshop @ SearchcampHTML/CSS Workshop @ Searchcamp
HTML/CSS Workshop @ Searchcamp
 
Basic CSS concepts by naveen kumar veligeti
Basic CSS concepts by naveen kumar veligetiBasic CSS concepts by naveen kumar veligeti
Basic CSS concepts by naveen kumar veligeti
 
Theme Kickstart
Theme KickstartTheme Kickstart
Theme Kickstart
 
Lecture 2 - HTML Basics
Lecture 2 - HTML BasicsLecture 2 - HTML Basics
Lecture 2 - HTML Basics
 

Más de Kalluri Vinay Reddy

Más de 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
 
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
 
Create an other activity lesson 3
Create an other activity lesson 3Create an other activity lesson 3
Create an other activity lesson 3
 
Building a simple user interface lesson2
Building a simple user interface lesson2Building a simple user interface lesson2
Building a simple user interface lesson2
 
Android app development lesson 1
Android app development lesson 1Android app development lesson 1
Android app development lesson 1
 
Social media marketing
Social media marketingSocial media marketing
Social media marketing
 
Data Centers and Internet
Data Centers and InternetData Centers and Internet
Data Centers and Internet
 
Frame relay
Frame relayFrame relay
Frame relay
 
web development basics tables part2
web development basics tables part2web development basics tables part2
web development basics tables part2
 
Web development basics 3
Web development basics 3Web development basics 3
Web development basics 3
 
Android basic
Android basicAndroid basic
Android basic
 
Inside Google
Inside Google Inside Google
Inside Google
 

Último

Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991RKavithamani
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 

Último (20)

Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 

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
  • 17. Thank you Any doubts Email: kalluri.vinayreddy@gmail.com