how to code html/css code example

Example 1: how to code a webstie

1. Go to youtube and watch a notoriously hard tutorial.
2. Attempt to copy the tutorial.
3. Buy an extremely expensive hosting site and domain.
4. Your (definitely not trash) website has now been published!
5. Get spam emails and get sued for accidentally including
the youtuber you watched's email on you website.

*bruh moment

OR

1. Watch an easy HTML and CSS tutorial and become UNIQUE.
2. Buy a domain and hosting.
3. Upload files
4. Bask in the reflected light of your trash wordpress domain

*smiles

Example 2: CSS IN HTML

<!-- Styles can be inserted in html using <style></style> element -->
<style>
	body {
    	background-color: cyan/*Color*/; 
  	}
</style>

<!--CSS can also be linked using link tag in html 
-the link tag is a self-closing tag-->

<link rel="stylesheet" type="text/css" href="filename.css"/>

Example 3: how to css html

<html>
<head>
<style>
body{
	direction:rtl;
}
  </style>
  </head>
  <body>
  </body>
</html>

Tags:

Css Example