Feedback for subjective question
Question 1: Analyze the following given code showing some Cascading Style Sheets tags and explain its lines one by one.
<html>
<head>
<style type="text/css">
h1 {text-decoration: overline}
h2 {text-decoration: line-through}
h3 {text-decoration: underline}
a {text-decoration: none}
</style>
</head>
</html>
<body>
<h1>This is header 1</h1>
<h2>This is header 2</h2>
<h3>This is header 3</h3>
<p><a href="http ://www.w3schools.com/default.asp">This is a link</a></p>
</body>
<html>
<head>
<style type="text/css">
h1 {text-decoration: overline}
h2 {text-decoration: line-through}
h3 {text-decoration: underline}
a {text-decoration: none}
</style>
</head>
</html>
<body>
<h1>This is header 1</h1>
<h2>This is header 2</h2>
<h3>This is header 3</h3>
<p><a href="http ://www.w3schools.com/default.asp">This is a link</a></p>
</body>
Current Answer:
Be the first to post an answer to earn 100CR.