Posts

Showing posts from August, 2019

Learn with Kbdk: Examples of Html code for practice(Html)

Image
Example 1 <html> <body> <p> This paragraph contains a lot of lines in the source code, but the browser ignores it. </p> </body> </html> Example 2 <html> <body> <p>This is<br /> a para<br/> graph with line breaks</p> </body> </html> Example 3 <html> <body> <p> My Bonnie lies over the ocean. My Bonnie lies over the sea. My Bonnie lies over the ocean. </p> </body> </html> Example 4 <html> <body> <h1>This is heading 1</h1> <h2>This is heading 2</h2> <h3>This is heading 3</h3> <h4>This is heading 4</h4> <h5>This is heading 5</h5> <h6>This is heading 6</h6> </body> </html> Example 5 <html> <body> <h1 style="text- align:center">This is heading 1</