Sunday, April 12, 2020

Some HTML Tags

In this post we will learn more about html we run a program that will be helpful for our next programs.

<html>                                       {//html opening tags

<head>                                       //head opening tags


<title>                                        //title opening tags

First Post</title>                       //title closing tags

</head>

<body>                                        //body opening tags

<h1>                                           //heading opening tags 

My Fist Post</h1>                    //heading  closing tags

<p>                                            //paragraph opening tags

<b>                                            //bold opening tags

    This is my first html post.
 </b>                                               //bold closing tags

</p>                                                //paragraph closing tags

</body>                                           //body closing tags

</html>                                            //html closing tags}

In curley brases i mention tags that are opening or closing these tags are basics of html if you understood these tags you can work easily on html.

No comments:

Post a Comment

css class

css class or html class: Class in html and css is a selector. We can define style rules based on the class attribute of the elements. Al...