How to Build a Website - By Logan E

Home

Getting an idea
What to create

What is HTML
< and > signs
Nessicary tags
Basic tags

What is CSS
Stylesheets
Basic styling

Nessicary tags

Tags are a form of statement that tells the computer what to put on your page. Most tags start with <something> inside brackets, and end with </something> inside brackets, but with a slash at the beginning. The slash indicates an ending statement.)

This tells the computer when to start and stop a function, such as adding a new paragraph or beginning the code itself.

When coding in HTML, there are a few basic and nessicary tags to use. They are easy to learn and easier to use.

  1. <!DOCTYPE html>

  2. <html>

  3. <head>

  4. <body>


More Tag