Sep 26, 2013

How to Learn HTML Online for Free! Part - 05 "Paragraphs in the body"

8:02 AM

READ MORE



We have set up a lot of the basic things for your HTML file for you. This is so you won't get mad at us for too much repetition—please learn it well!
We have learned about opening and closing tags. When we put content between the tags, the entire bit is called an element.
element = <opening tag> + content + <closing tag>
Notice we have both title tags now, but we need <body> tags. The content in the body is what will be visible on the actual page. The body goes inside the html tags, but not inside the head tags, like this:
<html>
    <head></head>
    <body></body>
</html>
 
Instructions:
  1. Between the title tags, give your page a name. It can be anything!
  2. Underneath the closing </head> tag, put in the opening and closing <body> tags.
  3. Inside the body, let's create paragraphs! Each paragraph requires opening and closing tags: <p> and </p>. We put content in between the tags.
  4. Between the <body> tags, create two paragraphs and write content in each paragraph. (This will require 2 pairs of <p> tags).

Written by

Learn Programming Language, Web Development and more Online without any cost!!!

0 comments:

Post a Comment

 

© 2013 Technology Update News!. All rights resevered. Designed by BDpython

Back To Top