My issue
how can i do it
My code
// your code goes here
Learning course: Learn HTML / CSS
Problem Link: CSS Inline styling Practice Problem in HTML / CSS - CodeChef
how can i do it
// your code goes here
Learning course: Learn HTML / CSS
Problem Link: CSS Inline styling Practice Problem in HTML / CSS - CodeChef
Hey @hanush1312 ,
You can refer my solution to solve this.
<main>
<!-- Update <h2> task here -->
<h2 style='color:blue; font-size: 16px;'>Overview</h2>
<h3>
<!-- Update <ol> task here -->
<ol style='color: blue; font-size:16px;'>
<li>Greece</li>
<li>Trip Options</li>
<li>Trip Itinerary</li>
</ol>
</h3>
</main>
<main>
<!-- Update <h2> task here -->
<h2 style='color: blue; font-size: 16px;'>Overview</h2>
<h3>
<!-- Update <ol> task here -->
<ol style='color: blue; font-size: 16px;'>
<li>Greece</li>
<li>Trip Options</li>
<li>Trip Itinerary</li>
</ol>
</h3>
</main>