W3. CSS is considered an easier framework to learn and use for a few reasons. First, it is built only with HTML and CSS, which are easier to learn than other programming languages. CSS can also speed up and simplify web development. Here are the steps on how to create and edit codes using W3.CSS
Type the following command
<div class=”w3-container
w3-teal”>
<h1>My Header</h1>
</div>
Then your desire image Note: rename your image file
<img src=”img_car.jpg” alt=”Car”>
Next is your description
<div class=”w3-container”>
<p>A car is a wheeled, self-powered motor vehicle used
for transportation.</p>
</div>
Finally, your footer information
<div class=”w3-container w3-teal”>
<p>My Footer</p>
</div>