Kudos
Collect
Twiiter
Facebook
Share

[HTML STARTER] Content II

Last updated over 4 years ago
2 0 0 0

Hey HTML beginners! In the last post, we covered how to draw imaginary boxes to draw sections of content.

Today, we will start putting some content in each section.

1. The Title

We have divided each content into sections:

  1. Title
  2. Sub-title
  3. Main image
  4. Main content

We will go over how to input the title and sub-title today. We use h1 tag for the main title. h stands for heading, and there are h tags starting from h1 to h6. Usually, h1 is used for the main title while other h tags are used for sub-titles. Each h tags has different font size, and h1 has th elargest font. See the following image that represent size of font for each h tag.

from h1 to h6
from h1 to h6

Let’s start putting the main title with h1 tag.

<html>
    <body>
        <div class="main-title">
            <h1>Guide for HTML Beginners!</h1>        
        </div>

        <div class="sub-title">

        </div>

        <div class="main-picture">

        </div>

        <div class="main-contents">

        </div>    
    </body>
</html>

Dont forget to put starting tag AND ending tag together! Let’s see how it looks on the browser.

Inputting the main title
Inputting the main title

2. Sub-title

Use h2 tag for a sub-title. It will look smaller than h1.

<html>
    <body>
        <div class="main-title">
            <h1>Guide for HTML Beginners!</h1>        
        </div>

        <div class="sub-title">
            <h2>A complete guide for HTML beginners</h2>
        </div>

        <div class="main-picture">

        </div>

        <div class="main-contents">

        </div>    
    </body>
</html>

Let’s find out how it looks on the brower

Inputting sub-title
Inputting sub-title

In the next post, we will go over how to input the main content and an image

Hi, it's Alexis here! I recently began studying coding (basically HTML) and thought I can share some of infos (that I've been learning so far) with some of you who just stepped into this world. I will be posting the basics of HTML and others including stuff like "Mac How to..."

Essedrop - Make your file online instantly
 

Responses

Leave a response to @alexis

Please sign in to comment.
Markdown is also available in comment.