HTML Text Formatting
Program 1 <html> <body> <p><b><u><i>This is some text</i></u></b></p> <p>H<sub>2</sub>O</p> <p>a<sup>3</sup></p> <p><small>this is some text</small></p> <p><big>this is some text</big></p> </body> </html>
Program 1 <html> <body> <p><b><u><i>This is some text</i></u></b></p> <p>H<sub>2</sub>O</p> <p>a<sup>3</sup></p> <p><small>this is some text</small></p> <p><big>this is some text</big></p> </body> </html>
Program 1 <html> <head> <title>My Website</title> </head> <body> <h1>Welcome</h1> <h2>Welcome</h2> <h3>Welcome</h3> <h4>Welcome</h4> <h5>Welcome</h5> <h6>Welcome</h6> <p><b><u><i>This is my website</i></u></b></p> <p>H<sub>2</sub>O</p> <p>a<sup>3</sup></p> <p>5<10</p> <p>></p> <p>"Where there is a will there is a way "</p> <p>John's homework...
Program 1 <html> <head> <title>My Website</title> </head> <body> <h1>Welcome</h1> <h2>Welcome</h2> <h3>Welcome</h3> <h4>Welcome</h4> <h5>Welcome</h5> <h6>Welcome</h6> <p><b><u><i>This is my website</i></u></b></p> <p>H<sub>2</sub>O</p> <p>a<sup>3</sup></p> <p> This is my website . <br> I am Learning HTML </p> </body> </html>
Program 1 <html> <head><title>Employee Registration Form</title></head> <body bgcolor=”cyan”> <center> <h3><font size=”10″ color=”blue”>Employee Registration</font></h3> <form method=”post” action=”home.html”> <table border=”1″> <tr> <th>Employee id:</th> <td><input type=text id=”EMPID” name=”txtId”></td> </tr> <tr> <th>Employee Name:</th> <td><input type=text id=”EMPNAME” name=”txtNAME”></td> </tr>...
Program 1 <html> <head> <title>Audio Video Demo</title> </head> <body> <center> <audio controls> <source src=”I://music//rendered-teasure-music-.mp4″ type=”audio/mpeg”> </audio> <br><br> <video controls> <source src=”I://videos-for-opencv//dog.mp4″ type=”video/ogg”> </video> </center> </body> </html>
Program 1 <html> <head> <title>Hyper Example</title> </head> <body> <center> <h3>Click here for next page</h3> <br> <A href=”https://data-flair.training/blogs/”>Click here for next page</A> <br> <br> <A href=”testimage.html” target=”_parent”> Click here for display Images </A> <br><br> <A...
Program 1 New! Keyboard shortcuts … Drive keyboard shortcuts have been updated to give you first-letters navigation <html> <head> <title>This is my first page in VS Code</title> </head> <center> <font color=red size=”10″>Wel come in...
HTML has proven to be the most basic building block of any web-page on the world wide web. Now that we have become familiar with the concepts of HTML, it is time to enhance...
Welcome back to DataFlair HTML Tutorial Series. In this article, we are going to learn about HTML Checkbox and various types and attributes of the same. So let’s start!!! HTML Checkbox HTML checkboxes...
HTML tags are keywords used in HTML to display web-pages with certain properties. They are further used for defining HTML elements. An HTML element consists of a starting tag, some content, and an ending...