Article About Html

Sukki GongatiSukki Gongati
2 min read

HTML STANDS FOR HYPER TEXT MARKUP LANGUAGE .

html is a skelton/structure of the page.

Basic code of html:

<!DOCTYPE html>
<head>

    <title>welcome to my 1st hmtl code</title>
</head>
<body>
    <h1> first heading </h1>
    <h2>second heading </h2>
    <h3>third heading</h3>
    <h4>forth heading</h4>
    <h5>fifth heading</h5>
    <h6>sixth heading</h6>
    <p>this p tell about paragraph .In this we can write any paragraph</p>

</body>
</html>

the above code we tell about headings and paragraph.

now we discuss about Anchor tag.

In this anchor tag href means h is heading and ref means reference .it defines tyhe hyper link.

<a href="https://www.w3schools.com/tags/tag_a.asp">this is anchor tag</a>

now we discuss about self closing tags:

self closing tags are

Break :<br>

Horizontal line:<hr>

Image :<img src=" "alt="image"/>

alt is used for when src not worked we can use alt.

Break tag is used for break the line in paragraph.

image:<img src="https://th.bing.com/th/id/OIP.x68pV6t3FJ7ltyL43Vb0bAHaEo?w=245&h=180&c=7&r=0&o=5&dpr=1.3&pid=1.7"alt="iamge"/>
    break tag:  <p>HTML has special tags like that act like closing tags <br> but represent empty content</p>
horizontal tag:<p>HTML has special tags like that act like closing tags <hr>but represent empty content</p>

horizontal line is used for line will placed draw the line.

Formatting tags:

Bold :<b></b>

strong :<strong></strong>

italic :<i><i/>

emphasis :<em></em>

underline :<u></u>

strike :<strike></strike>

sub script :<sub></sub>

super script :<sup></sup>

delete :<del></del>

insert :<ins></ins>

small :<small></small>

big :<big></big>

preformat :<pre></pre>

code :<code></code>

 <b>this is bold,the letters are in bold</b><br>
    <strong>it strong it is also like bold</strong><br>
    <i>it is italic ,in this we see sland the letters</i><br>
    <em>this is also like italic </em>
 <u>this is underline formatting tag</u>
    <p>H<sub>2</sub>0</p>
    <p>(a+b)<sup>2</sup></p>
    <del>this used for delete the text</del>
    <ins>it is used for inserting</ins>
    <small>it shows the text small</small>
    <big>it shows the text big</big>
    <pre> chitti chilakamma
        amma kottidha
        thotakelava
        pandu thechava 
        gutlo pettava 
        guduku mingava
    </pre>
    <code>this is for code format</code>

the above code about formatting tags.

thanks for watching my article ,please like and subscribe my article.

1
Subscribe to my newsletter

Read articles from Sukki Gongati directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Sukki Gongati
Sukki Gongati