SlideShare a Scribd company logo
1 of 48
Download to read offline
HTML
Structure/layout
CSS JS
Style Logic
Level 1
HTML
Hyper Text Markup Language
HTML is the code that is used to
structure a web page and its content.
The component used to design the
structure of websites are called HTML tags.
First HTML File
index.html
It is the default name for a website's homepage
HTML Tag
A container for some content or other HTML tags
<p> </p>
This is a paragraph
Element
Content
Basic HTML Page
<!DOCTYPE html>
<html>
<head>
<title>My First Page</title>
</head>
<body>
<p>hello world</p>
</body>
</html>
tells browser you are using HTML5
root of an html document
container for metadata
contains all data rendered by the browser
page title
paragraph tag
Quick Points
Html tag is parent of head & body tag
Most of html elements have opening & closing tags
with content in between
Some tags have no content in between, eg - <br>
We can use inspect element/view page source to edit html
Comments in HTML
<!-- This is an HTML Comment -->
This is part of code that should not be parsed.
HTML is NOT case sensitive
<p> = <P>
<html> = <HTML>
<head> = <HEAD>
<body> = <BODY>
Level 2
Basic HTML Tags
Attributes are used to add more information to the tag
HTML Attributes
<html lang="en">
Heading Tag
Used to display headings in HTML
h1 (most important)
h3
h2
h4
h5
h6 (least important)
Paragraph Tag
Used to add paragraphs in HTML
<p> This is a sample paragraph </p>
Anchor Tag
Used to add links to your page
<a href="https://google.com"> Google </a>
Image Tag
Used to add images to your page
<img src="/image.png" alt="Random Image">
relative url
Br Tag
Used to add next line(line breaks) to your page
<br>
Bold, Italic & Underline Tags
Used to highlight text in your page
<b> Bold </b>
<i> Italic </i>
<u> Underline </u>
Big & Small Tags
Used to display big & small text on your page
<big> Big </big>
<small> Small </small>
Hr Tag
Used to display a horizontal ruler, used to separate content
<hr>
Subscript & Superscript Tag
Used to display a horizontal ruler, used to separate content
<sub> subscript </sub>
<sup> superscript </sup>
H O
2
A + B
n
Pre Tag
Used to display text as it is (without ignoring spaces & next line)
<pre> This
is a sample
text.
</pre>
Level 3
Page Layout Techniques
using Semantic tags for layout
<header>
<main>
<footer>
using the Right Tags
Inside Main Tag
Section Tag
<section>
For a section on your page
Article Tag
<article>
For an article on your page
Aside Tag
<aside>
For content aside main content(ads)
Revisiting Anchor Tag
<a href="https://google.com" target="_main"> Google </a>
for new tab
<a href="https://google.com"> <img src="link"> </a>
clickable pic
Revisiting Image Tag
set height
set width
<img src="link" height=50px >
<img src="link" width=50px >
Div Tag
Div is a container used for other HTML elements
Block Element (takes full width)
<address>
<article>
<aside>
<blockquote>
<canvas>
<dd>
<div>
<dl>
<dt>
List : Div Tags
<fieldset>
<figcaption>
<figure>
<footer>
<form>
<h1>-<h6>
<header>
<hr>
<li>
<main>
<nav>
<noscript>
<ol>
<p>
<pre>
<section>
<table>
<tfoot>
<ul>
<video>
Span Tag
Span is also a container used for other HTML elements
Inline Element (takes width as per size)
List : Span Tags
<a>
<abbr>
<acronym>
<b>
<bdo>
<big>
<br>
<button>
<cite>
<code>
<dfn>
<em>
<i>
<img>
<input>
<kbd>
<label>
<map>
<object>
<tt>
<var>
<output>
<q>
<samp>
<script>
<select>
<small>
<span>
<strong>
<sub>
<sup>
<textarea>
<time>
Level Pro
List in HTML
Lists are used to represent real life list data.
unordered ordered
<ul>
</ul>
<li> Apple </li>
<li> Mango </li>
<ol>
</ol>
<li> Apple </li>
<li> Mango </li>
Tables in HTML
Tables are used to represent real life table data.
<tr> used to display table row
<td>
<th>
used to display table data
used to display table header
Tables in HTML
</table>
<th> Name </th>
<table>
<tr>
<th> Roll No </th>
</tr>
<td> Shradha </th>
<tr>
<th> 1664 </th>
</tr>
Name Roll No
Shradha 1664
Caption in Tables
<caption> Student Data </caption>
Name Roll No
Shradha 1664
Student Data
thead & tbody in Tables
<thead> to wrap table head
<tbody> to wrap table body
colspan attribute
colspan="n"
used to create cells which spans over multiple columns
Shradha 1664
Aman 1890
Data
Form in HTML
Forms are used to collect data from the user
Eg- sign up/login/help requests/contact me
<form>
</form>
form content
Action in Form
<form action="/action.php" >
Action attribute is used to define what action needs to be
performed when a form is submitted
Form Element : Input
<input type="text" placeholder="Enter Name">
Label
<input type="radio" value="class X" name="class" id="id1">
<label for="id1">
</label>
<input type="radio" value="class X" name="class" id="id2">
<label for="id2">
</label>
Class & Id
<div id="id1" class="group1">
</div>
<div id="id2"> class="group1">
</div>
Checkbox
<input type="checkbox" value="class X" name="class" id="id1">
<label for="id1">
</label>
<input type="checkbox" value="class X" name="class" id="id2">
<label for="id2">
</label>
Textarea
<textarea name="feedback" id="feedback" placeholder="Please add Feedback">
</textarea>
Select
<option value="Delhi"> Delhi </option>
<select name="city" id="city">
</select>
<option value="Mumbai"> Delhi </option>
<option value="Banglore"> Delhi </option>
iframe Tag
website inside website
<iframe src="link"> Link </option>
Video Tag
<video src="myVid.mp4"> My Video </video>
Attributes
- controls
- height
- width
- loop
- autoplay
All the very best in your future
journey :)
- Aman bhaiya & Shradha didi

More Related Content

Similar to HTML Notes for new begginers for HTML CSS

Similar to HTML Notes for new begginers for HTML CSS (20)

Caracteristicas Basicas De Htlm
Caracteristicas Basicas De HtlmCaracteristicas Basicas De Htlm
Caracteristicas Basicas De Htlm
 
HTML/HTML5
HTML/HTML5HTML/HTML5
HTML/HTML5
 
Html tutorial
Html tutorialHtml tutorial
Html tutorial
 
Html ppt
Html pptHtml ppt
Html ppt
 
Practicals it
Practicals itPracticals it
Practicals it
 
Html2
Html2Html2
Html2
 
Html (hypertext markup language)
Html (hypertext markup language)Html (hypertext markup language)
Html (hypertext markup language)
 
Hypertext_markup_language
Hypertext_markup_languageHypertext_markup_language
Hypertext_markup_language
 
Html
HtmlHtml
Html
 
Advance HTML
Advance HTMLAdvance HTML
Advance HTML
 
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdf
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdfHSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdf
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdf
 
HTML (Basic to Advance)
HTML (Basic to Advance)HTML (Basic to Advance)
HTML (Basic to Advance)
 
Html introduction
Html introductionHtml introduction
Html introduction
 
Learn HTML Easier
Learn HTML EasierLearn HTML Easier
Learn HTML Easier
 
Html tutorials by www.dmdiploma.com
Html tutorials by www.dmdiploma.comHtml tutorials by www.dmdiploma.com
Html tutorials by www.dmdiploma.com
 
Computer application html
Computer application htmlComputer application html
Computer application html
 
INTRODUCTION FOR HTML
INTRODUCTION  FOR HTML INTRODUCTION  FOR HTML
INTRODUCTION FOR HTML
 
PPT-203105353-1.pdf
PPT-203105353-1.pdfPPT-203105353-1.pdf
PPT-203105353-1.pdf
 
Html
HtmlHtml
Html
 
Html
HtmlHtml
Html
 

Recently uploaded

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
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfadityarao40181
 
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
 
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
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfakmcokerachita
 
Science lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonScience lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonJericReyAuditor
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfMahmoud M. Sallam
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 

Recently uploaded (20)

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
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdf
 
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
 
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
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdf
 
Science lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonScience lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lesson
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdf
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 

HTML Notes for new begginers for HTML CSS

  • 3. HTML Hyper Text Markup Language HTML is the code that is used to structure a web page and its content. The component used to design the structure of websites are called HTML tags.
  • 4. First HTML File index.html It is the default name for a website's homepage
  • 5. HTML Tag A container for some content or other HTML tags <p> </p> This is a paragraph Element Content
  • 6. Basic HTML Page <!DOCTYPE html> <html> <head> <title>My First Page</title> </head> <body> <p>hello world</p> </body> </html> tells browser you are using HTML5 root of an html document container for metadata contains all data rendered by the browser page title paragraph tag
  • 7. Quick Points Html tag is parent of head & body tag Most of html elements have opening & closing tags with content in between Some tags have no content in between, eg - <br> We can use inspect element/view page source to edit html
  • 8. Comments in HTML <!-- This is an HTML Comment --> This is part of code that should not be parsed.
  • 9. HTML is NOT case sensitive <p> = <P> <html> = <HTML> <head> = <HEAD> <body> = <BODY>
  • 11. Basic HTML Tags Attributes are used to add more information to the tag HTML Attributes <html lang="en">
  • 12. Heading Tag Used to display headings in HTML h1 (most important) h3 h2 h4 h5 h6 (least important)
  • 13. Paragraph Tag Used to add paragraphs in HTML <p> This is a sample paragraph </p>
  • 14. Anchor Tag Used to add links to your page <a href="https://google.com"> Google </a>
  • 15. Image Tag Used to add images to your page <img src="/image.png" alt="Random Image"> relative url
  • 16. Br Tag Used to add next line(line breaks) to your page <br>
  • 17. Bold, Italic & Underline Tags Used to highlight text in your page <b> Bold </b> <i> Italic </i> <u> Underline </u>
  • 18. Big & Small Tags Used to display big & small text on your page <big> Big </big> <small> Small </small>
  • 19. Hr Tag Used to display a horizontal ruler, used to separate content <hr>
  • 20. Subscript & Superscript Tag Used to display a horizontal ruler, used to separate content <sub> subscript </sub> <sup> superscript </sup> H O 2 A + B n
  • 21. Pre Tag Used to display text as it is (without ignoring spaces & next line) <pre> This is a sample text. </pre>
  • 23. Page Layout Techniques using Semantic tags for layout <header> <main> <footer> using the Right Tags
  • 24. Inside Main Tag Section Tag <section> For a section on your page Article Tag <article> For an article on your page Aside Tag <aside> For content aside main content(ads)
  • 25. Revisiting Anchor Tag <a href="https://google.com" target="_main"> Google </a> for new tab <a href="https://google.com"> <img src="link"> </a> clickable pic
  • 26. Revisiting Image Tag set height set width <img src="link" height=50px > <img src="link" width=50px >
  • 27. Div Tag Div is a container used for other HTML elements Block Element (takes full width)
  • 28. <address> <article> <aside> <blockquote> <canvas> <dd> <div> <dl> <dt> List : Div Tags <fieldset> <figcaption> <figure> <footer> <form> <h1>-<h6> <header> <hr> <li> <main> <nav> <noscript> <ol> <p> <pre> <section> <table> <tfoot> <ul> <video>
  • 29. Span Tag Span is also a container used for other HTML elements Inline Element (takes width as per size)
  • 30. List : Span Tags <a> <abbr> <acronym> <b> <bdo> <big> <br> <button> <cite> <code> <dfn> <em> <i> <img> <input> <kbd> <label> <map> <object> <tt> <var> <output> <q> <samp> <script> <select> <small> <span> <strong> <sub> <sup> <textarea> <time>
  • 32. List in HTML Lists are used to represent real life list data. unordered ordered <ul> </ul> <li> Apple </li> <li> Mango </li> <ol> </ol> <li> Apple </li> <li> Mango </li>
  • 33. Tables in HTML Tables are used to represent real life table data. <tr> used to display table row <td> <th> used to display table data used to display table header
  • 34. Tables in HTML </table> <th> Name </th> <table> <tr> <th> Roll No </th> </tr> <td> Shradha </th> <tr> <th> 1664 </th> </tr> Name Roll No Shradha 1664
  • 35. Caption in Tables <caption> Student Data </caption> Name Roll No Shradha 1664 Student Data
  • 36. thead & tbody in Tables <thead> to wrap table head <tbody> to wrap table body
  • 37. colspan attribute colspan="n" used to create cells which spans over multiple columns Shradha 1664 Aman 1890 Data
  • 38. Form in HTML Forms are used to collect data from the user Eg- sign up/login/help requests/contact me <form> </form> form content
  • 39. Action in Form <form action="/action.php" > Action attribute is used to define what action needs to be performed when a form is submitted
  • 40. Form Element : Input <input type="text" placeholder="Enter Name">
  • 41. Label <input type="radio" value="class X" name="class" id="id1"> <label for="id1"> </label> <input type="radio" value="class X" name="class" id="id2"> <label for="id2"> </label>
  • 42. Class & Id <div id="id1" class="group1"> </div> <div id="id2"> class="group1"> </div>
  • 43. Checkbox <input type="checkbox" value="class X" name="class" id="id1"> <label for="id1"> </label> <input type="checkbox" value="class X" name="class" id="id2"> <label for="id2"> </label>
  • 44. Textarea <textarea name="feedback" id="feedback" placeholder="Please add Feedback"> </textarea>
  • 45. Select <option value="Delhi"> Delhi </option> <select name="city" id="city"> </select> <option value="Mumbai"> Delhi </option> <option value="Banglore"> Delhi </option>
  • 46. iframe Tag website inside website <iframe src="link"> Link </option>
  • 47. Video Tag <video src="myVid.mp4"> My Video </video> Attributes - controls - height - width - loop - autoplay
  • 48. All the very best in your future journey :) - Aman bhaiya & Shradha didi