example website using html and css
Example: 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>