Wednesday, February 5, 2020

HTML Basic Tags

Program:

<!DOCTYPE html>
<html>
    <head>
        <title>All Tags in HTML</title>
    </head>
    <body>
        <hr />
        <h3 style=" background-color: red; color: blueviolet;"><blockquote><small>HTML Programming</small></blockquote></h3>
        <hr />

        <h3 style=" background-color: orange; color: blueviolet;"><blockquote><small>CSS Programming</small></blockquote></h3>
        <hr />

        <h3 style=" background-color: green; color: blueviolet;"><blockquote><small>PHP Programming</small></blockquote></h3>
        <hr />

        <h3 style=" background-color: blue; color: blueviolet;"><blockquote><small>Android Programming</small></blockquote></h2
            >
        <hr style="color: red;"/>
    </body>
</html>


Output:

No comments:

Post a Comment

Simple Example of div tag in html with css

HTML and CSS Code : <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <m...