HTML5 REVISION…

Namaste friends…..!!!!! I know you all missed me...right ?...just kidding :P . So, in today’s post we will be learning to design a simple web page using all the tags which we learned about in the earlier posts. So, the tags which we learned about in the previous posts were as follows:-

11.     HTML Document Structure: It represents the basic HTML document structure that is:-

<!DOCTYPE html>
<html>
           <head>
                        <title>
                        </title>
           </head>
                                    <body>
                                    </body>
</html>


22.  HTML Basic Formatting tags: HTML defines special elements for defining text with a special meaning. Formatting elements were designed to display special types of text:

A)    Headings tags: Any document starts with a heading. We can use different sizes of headings. HTML has six layers of headings i.e., <h1>,<h2>,<h3>,<h4>,<h5>,<h6>.
B)    Paragraph tag: The <p> tag offers a way to structure your text into different paragraphs.
C)    Line break tag: Whenever we use the <br /> element, anything following it starts from the next line.


33.  HTML fonts<font>tag: The font tag is having three attributes called size, color, and face to customize your fonts:

A)    Font size: We can set content font size using size attribute. The range of accepted values is from 1(Smallest) to 7(Largest).
B)    Font face: We can set the font face using the font face attribute but be aware that if the user viewing the page doesn’t have the font installed, they will not be able to see it.
C)    Font color: We can set any font color like using color attribute.


44.   HTML Colors: We can specify colors on page level using <body>tag or we can set colors for individual tags using bgcolor attribute.

55.    HTML text links: A link is specified using HTML tag<a>.

So, guys these were some of the tags about which we discussed earlier in the posts. Now, using all these tags we will be designing a web page.


INPUT:






OUTPUT:





So, guys this was all for today. Next time I will be discussing further about html. Till then have fun and get yourself informed by the other posts by my mates on this platform….see you soon…take care. 

Comments