Getting Started with HTML Basics: A Beginner’s Guide to Building Your First Website

Creating websites is an exciting journey, and understanding the basics of HTML (HyperText Markup Language) is the first step. In this guide, we’ll cover the essentials of HTML, from installing the tools you need to creating your very first webpage. Let’s dive in!


What You’ll Need

Before we begin, you’ll need:

  1. A Web Browser: To view websites, including the ones you create.
    • Recommended: Google Chrome
  2. A Code Editor: To write HTML and CSS code.
    • Recommended: Visual Studio Code (VS Code)

Installation

  • Google Chrome: Search “Google Chrome download” in any browser and follow the instructions on the official website.
  • VS Code: Search “VS Code download” and install from the official site.

What is HTML?

HTML, or HyperText Markup Language, is the backbone of every website. It’s a set of instructions (code) that tells the browser how to display content. For instance:

  • Buttons, paragraphs, and links are all created using HTML.
  • HTML works together with CSS to style and format content.

Let’s Create Your First Website

Step 1: Set Up Your Workspace

  1. Create a Folder: On your computer, create a new folder named HTML-CSS-Course.
    • This folder will contain all your code files.
  2. Open the Folder in VS Code:
    • Launch VS Code.
    • Go to File > Open Folder, and select HTML-CSS-Course.

Step 2: Create Your First HTML File

  1. In VS Code, click the new file icon.
  2. Name the file website.html.
    • Ensure the .html extension is added, as it indicates the file contains HTML code.

Step 3: Write Your First HTML Code

  1. Start with a button element: <button>Hello</button>
    • <button> is the opening tag.
    • Hello is the content inside the button.
    • </button> is the closing tag.
  2. Save the file (Ctrl + S or Cmd + S).

Step 4: View Your Website

  1. Go to your HTML-CSS-Course folder.
  2. Right-click website.html and select Open with Google Chrome.
    • You’ll see a button labeled “Hello.”
html button example
html button example

Step 5: Add a Paragraph

  1. Add this code below the button: <p>This is a paragraph of text.</p>
  2. Save the file and refresh your browser.
    • The paragraph will now appear below the button.
html Paragraph example
html Paragraph example

Understanding HTML Syntax

  • Tags: Enclose content (e.g., <p> and </p> for paragraphs).
  • Elements: Tags plus the content they enclose.
    • Example: <button>Hello</button> creates a button element.
  • Attributes: Modify elements. Example: <a href="https://youtube.com">YouTube</a>
    • href specifies the link’s destination.

  1. Add this code: <a href="https://youtube.com" target="_blank">Link to YouTube</a>
  2. Save and refresh your browser.
    • The link will open YouTube in a new tab.
html Link example
html Link example

Key Tips

  1. Follow Syntax Rules: Tags must have proper structure.
  2. Indentation: Use 2 spaces for readability. Update in VS Code:
    • Bottom-right > Indent Using Spaces > Set to 2.

Next Steps

  • Experiment with HTML elements like headings (<h1>), images (<img>), and lists (<ul>/<ol>).
  • Stay tuned for lessons on CSS to style your webpage!

Your First HTML Journey

By now, you’ve:

  • Installed essential tools.
  • Written basic HTML code.
  • Created and viewed your first website.

Congratulations on taking the first step in web development! 🎉

More from author

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Related posts

Advertisment

Latest posts

How to Style Text in HTML and CSS: A Step-by-Step Guide

In this lesson, we explore the fundamentals of text styling using HTML and CSS. We’ll cover everything from setting fonts and sizes to adding...

Mastering Chrome DevTools: Perfect Colors, Spacing, and More for Your Buttons

Chrome DevTools is one of the most powerful tools for web developers, enabling deep insights into HTML, CSS, and JavaScript right from your browser....

Enhance Your CSS Skills: Hovers, Transitions, and Shadows

CSS can make your website not only functional but also visually appealing. In this blog post, we’ll explore intermediate CSS techniques: creating hover effects,...