ADDING MEAT TO THE BODY OF OUR WEBPAGE (Filling the body)!!

in #programming6 years ago

Your Facebook's news feed is the body of the website of Facebook. Today we will be filling the body of our Webpage which we initiated earlier in my previous tutorial.

If you haven't followed my tutorial, Here is a link.

html5.jpg

Recap :-

In my previous blog, We initiated our Webpage and got an introduction about getting started with html5. It was a complete basic tutorial for beginners to know everything about tags and getting started.

Contents of today :-

  • Getting familiar with header <h></h> tags.
  • Using paragraphs tags <p></p>.
  • Adding actual content to our Webpage.

Current Progress :-

prog.JPG

<!doctype html>
<html>
<head>
   <title> My Webpage </title>
</head>

<body>

</body>
</html>

This is how much we have worked so far in my previous tutorial, You can find the link on top in case you missed it

Use of header tags :-

As we know that every section in html uses tags !!! Similar is the case for header tags. Header tags are also Initiated and closed just like other tags. "/" is used with the ending tag as it specifies the closing of a tag.

I'll use the same code we wrote in my yesterday's blog :-

header tags.JPG

From the code above, We can see that I've added <h1></h1> tags in the <body></body> tags of my Webpage. The use of header tags is simple, based on a logic. You must have used headings in Ms word or any other software or even in your exams or tests and you all surely know that a heading is always written in bold letters and a bigger font, Right? The header tags are also used for 100% same purpose, Yes to add headings in our webpages.

Font size of a heading depends upon the numeric value For example :- h1 is the biggest header heading, h2 is smaller than h1, h3 is smaller than h2 and so on.

h tags.jpg

Between the header tags we add the heading :-

header.JPG

<!doctype html>
<html>
<head>
   <title> My Webpage </title>
</head>

<body> 
<h1>My first heading</h1>
</body>
</html>

Output

output.JPG

Use of Paragraph tags :-

The use of paragraph tags is pretty simple, as specified by its name, These tags are used for writing and adding paragraphs to our webpage and are also initiated and closed just like EVERY OTHER tag.

paragraph.JPG

<!doctype html>
<html>
<head>
   <title> My Webpage </title>
</head>

<body> 
<h1>My first heading</h1>
<p>I have created my first heading by learning it through the blog of Frost walker. CUZZZZ he is the best :P</p>
</body>
</html>

Any text added between paragraph tags will be written in the form of paragraph

output p.JPG

In my today's blog, we've learned about using header and paragraph tags, In my next blog, we will learn how to add images in our webpage. If you don't see the updated page after adding more content in it, Make sure to save your file.

If you find this helpful and want to support me in creating more original content, Upvote, Resteem, Comment and follow :)

Upvote,Resteem & Comment.png

Thanks

______________________________________________________________

Coin Marketplace

STEEM 0.19
TRX 0.13
JST 0.030
BTC 62714.40
ETH 3447.03
USDT 1.00
SBD 2.51