how to code a website using html and css code example

Example 1: make a website with html and css

You can begin by learning the basic elements of HTML, like <div>,<p> and <span>.
 
Then with the elements' ids and classes, you can practice some css by creating
a <style></style> element in your .html file.
Example:
  <html>
    <style>
    	#myDiv{
      		color:red;
      	}
    </style>
    <div id='myDiv'>
      Hello World
    </div>
    
  </html>

Example 2: use w3 css on your website

To use w3-css on your project just add the following cdn to your HTML head tag
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
from here you'll be able to call any w3-css class and use it in your project.

Tags:

Css Example