simple webpage 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: how to code a website

1. make a html, css, and javascript file to make your own unique website
2. Get a domain
3. Get a hosting site
4. Put your domain on your hosting site
5. Put your files into the domain. 
6. Your website is online!

Tags:

Html Example