Learning course: Learn HTML / CSS
Problem Link: CodeChef: Practical coding for everyone
Feedback
Please send this answer
Learning course: Learn HTML / CSS
Problem Link: CodeChef: Practical coding for everyone
Please send this answer
so difficult
index.html
<link rel="stylesheet" href="style.css">
<header>
<h1>My recent trip to Greece</h1>
</header>
<main>
<h2>Overview</h2>
<h3>
<ol>
<li>Greece</li>
<li>Trip Options</li>
<li>Trip Itinerary</li>
</ol>
</h3>
style.css
h2 {
color: red;
font-size: 24px;
}
ol {
color: blue;
font-size: 16px;
}