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>