Hyper Text Markup Language


Tags Covered: <html> <head> <body> <title> <meta> <link> <style> <script> <base> <p> <h1> <h2> <h3> <h4> <h5> <h6> <span> <div> <br> <hr> <strong> <em> <b> <i> <u> <small> <mark> <del> <ins> <sub> <sup> <a> <nav> <ul> <ol> <li> <dl> <dt> <dd> <img> <picture> <figure> <figcaption> <audio> <video> <source> <track> <table> <thead> <tbody> <tfoot> <tr> <th> <td> <caption> <form> <input> <textarea> <button> <select> <option> <label> <fieldset> <legend> <datalist> <output> <progress> <meter> <noscript> <template> <slot> <header> <footer> <main> <section> <article> <aside> <details> <summary> <dialog> <iframe> <details> <summary>

1. Add a header h1 to h6 with data(Header1...Header6)below h1


<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>Header1</h1>
</body>
</html>

2. Comment lines 2,3 and 4


<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1> React Topics</h1>
1. JSX (JavaScript XML)
2. State Management
3. Props
4. Hooks
5. React Router
</body> </html>

3.
i. Add www.facebook.com URL to Facebook the hyperlink should open in the current tab
ii. Add www.instagram.com URL to Instagram the hyperlink should open in the newtab


<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1> Social Media</h1>
<p>Facebook</p>
<p>Instagram</p>
</body>
</html>

4.when user places on CSS it should show "Cascading Style Sheets"


<!DOCTYPE html>
 <html>
 <body>
 <h1>Adding abbreviation</h1>
 <p>CSS</p>
 </body>
 </html>
 

5.
i. Add quotes using 'q' tag for line1
ii. Strike off price $500 using 's' tag


<!DOCTYPE html>
<html>
<body>
<h1>Quotes and strike off </h1>
<p>The Sun raises in the East</p>
<p>$500</p>
</body>
</html>