Web Design using basic HTML and CSS

HTML or Hypertext Markup Language is the standard markup language for Web pages. Combining HTML and CSS or Cascading Style Sheets will make your website has its own style.

Every code or tags always have “<” before and “>” after the tag and this is “</>” end tag. Here is an example, <i>Trial</i> (The output of this code will be look like this “ Trial ”).
And last, always use this “<html>” at the start of your document and this “</html>” at the end of your document.
You can try this code on your notepad and save it with this format “filename.html” and save as type “All files”.

Start learning in creating a website on your own with these codes!

<!DOCTYPE html>
<html>
<head>
<style>
body {
  background-color: yellow;
}

h1 {
  color: red;
  text-align: center;
}

p {
  font-family: arial;
  font-size: 20px;
}
</style>
</head>
<body>

<h1>Hello World</h1>
<p>This is my first Website. </p>

</body>
</html>

Leave a Comment

Your email address will not be published. Required fields are marked *