Introduction: Making a Website in HTML & CSS

Making a website in HTML and CSS takes trial and error. Just keep on trying and you will be a pro in HTML and CSS.

Note: These are just a few programming languages that are used by programmers.

Supplies

  • Computer or laptop
  • Text editor

Step 1: Learn As Much As You About HTML & CSS

Learning about HTML and CSS is crucial in building a website. With HTML, you can provide content onto your website. For starters, if I wanted to write a article on COVID-19, I would need to know HTML in order to write that article on COVID-19. Now with CSS, you can design your website anyway you want for it to be designed. You can make a website pink, blue, purple, etc.

If you want to, you can go to W3Schools.com. Here is the link: https://www.w3schools.com/

Note: I am not sponsored by W3Schools in anyway shape or form. It's just the website that I've used when learning about HTML and CSS.

Step 2: Start Off by Providing Content on Your Website Using HTML

First off, open Notepad on your computer. Now you may be asking yourself, what is Notepad?

Well, Notepad is a simple text editor for Microsoft Windows. It enables you to create documents and websites. Now, if you own a Mac instead, look for TextEdit. TextEdit is essentially the Mac equivalent to Windows Notepad or a third-party application.

In Notepad, type in the following:

<!DOCTYPE html>
<html>
<head>
</head>
<body>
<!--Don't type in this part. This is just a comment. This is HTML.-->
</body>
<html>

Step 3: Customize Your Website Using CSS

After you're done coding in HTML, customize your website in using CSS. Look, I don't care how you customize your website. Do what you think is best appealing.

In Notepad, type in the following:

<!DOCTYPE html>
<html>
<head>
</head>
<style>
<!--In this section, you would be able to customize you website in CSS. In here, you can make your website really pop.-->
</style>
<body>
</body>
</html>

Step 4: Look at Your Final Product

Take some time to look at your final product (your website). Just admire the fact that you've created something using your hands and your computer. And if you're not pleased with your website, go back into your notepad and fix your website so that you can admire your work. God bless and have a wonderful day/night.

Please consider to vote for me in the First Time Author Contest.

First Time Author Contest

Participated in the
First Time Author Contest