02Geek HTML5 and JavaScript, TypeScript, React, Flash, ActionScript online School
Previous VideoNext Video

How to pick an HTML Editor

In this video, we learn how to get started with HTML by picking the right tools. We'll cover the difference between WYSIWYG editors like Dreamweaver and plain text editors like Sublime Text. Discover the value of coding HTML directly and why understanding what's happening behind the scenes matters. By the end, you'll know how to create and save your very first HelloWorld.html file and test it in a browser!

Ready to Level Up Your Skills?

Join thousands of learners on 02GEEK and start your journey to becoming a coding expert today!

Enroll Now for Free!

Getting Started with HTML Training

Join my mom as I teach her the basics of HTML. In this ground breaking course.

02:16

Starting to do HTML

In this first video we will start talking about file formats, browsers and even see a few file types in HTML.

04:27

How to pick an HTML Editor

There are a lot of HTML editors out there so how will you pick the right on for you?

04:52

Creating Our First Tag

The most basic building block in HTML is the Tags. we will create one tag of our own. In this video we will create our first simple tag.

02:41

HTML, HEAD and BODY Tags

Every HTML page has a few tags you got to have that without them its not an HTML page. In this video we will learn about the HTML tag, the Head and the Body Tags.

02:43

Putting Content In Our Body

Now that we have a legal HTML structure its time for us to add our first content into our legal built HTML file.

01:24

Creating a Page Title

Adding a TITLE to the page. In this video we will add a title into the HEAD area of the page. We will then talk about what the TITLE is and where we can see it.

03:21

Creating Headlines: Tags H1 Through H6

It's time for us to explore and learn a few more tags. The tags we will be creating next are the headline tags. By the end of this video you will know 6 new tags!

02:08

Integrating the P tag (paragraph tag)

It's time for us to add the P tag into our skill set of tags. In this video we continue to learn HTML and add in the basic information we need to know about the P tag.

00:41

RECAP

That's it we are done with our first HTML session. We would love to make many more but that is 100% up to you if you love it support us drop a nice word for my mom and me.

01:06

How to pick an HTML Editor detailed:

1. Types of Editors: WYSIWYG vs. Plain Text Editors

There are two main types of editors you can use:

  • WYSIWYG Editors (What You See Is What You Get):

    • Tools like Dreamweaver allow you to design web pages visually without needing to know how to code.
    • They are easy to use, similar to editing a Word document or an email.
    • Why we don’t recommend it: While WYSIWYG tools are convenient, they hide the underlying HTML structure. This means you won’t truly understand what’s happening behind the scenes.
  • Plain Text Editors:

    • These editors allow you to write raw HTML code.
    • Examples include:
      • Notepad (Windows)
      • Sublime Text (recommended in this tutorial)
    • Sublime Text is free to use but shows an "unregistered" mark unless you purchase it.
    • Why we recommend it: Plain text editors teach you how HTML works, giving you complete control over your code.

2. Setting Up Your Editor

For this tutorial, we’ll use Sublime Text. Here’s what you need to do:

  1. Download and Install Sublime Text:

  2. Open a New File:

    • Launch Sublime Text and create a new file by selecting:
      • File > New File

3. Creating Your First HTML File

Let’s create a basic HTML file called HelloWorld.html. Follow these steps:

  1. Save the File with an HTML Extension:

    • Go to File > Save As
    • Save the file to your desktop (or another location).
    • Name the file: HelloWorld.html
  2. Why .html?

    • The .html extension tells the computer and web browsers that this file contains HTML code.

4. Testing Your HTML File

Once you’ve saved the file, let’s see what happens:

  1. Locate the HelloWorld.html file you saved.
  2. Drag and drop it into any web browser (e.g., Chrome, Firefox, Safari, etc.).
  3. You’ll see that the browser opens the file, but it appears blank—this is normal because the file currently has no content inside it.

5. About Web Browsers

At this stage, the browser you use doesn’t matter because basic HTML renders the same way in most browsers.

  • Examples of browsers:
    • Chrome
    • Firefox
    • Safari
    • Internet Explorer / Edge

However, later in web development, you’ll want to test your website in different browsers since they may interpret code slightly differently.


Summary

By the end of this tutorial, you’ve:

  • Learned about WYSIWYG editors and why we use plain text editors instead.
  • Installed and set up Sublime Text.
  • Created and saved your first HTML file: HelloWorld.html.
  • Tested the file in a browser to see how it works.

What’s Next?

In the next tutorial, we’ll dive deeper into writing content for your HTML file and adding structure to your web pages. Stay tuned!