xFactorSchool.com(Beta)
How to Do Examples
Python Examples
HTML Examples
Code Examples
C Code Examples
C++ Code Examples
C# Code Examples
Java Code Examples
Python Code Examples
HTML Code Examples
CSS Code Examples
JavaScript Code Examples
Online Editor
C Code Editor
C++ Code Editor
C# Code Editor
Java Code Editor
Python Code Editor
HTML Code Editor
CSS Code Editor
JavaScript Code Editor
Practice how to keep natural spaces and line breaks like poems in HTML
HTML Online Editor
Run Code
More HTML Sample Codes
<!DOCTYPE html> <html> <head> <title>Spaces and line breaks in HTML</title> <!-- Title of the page--> </head> <body> <!-- elements of the body will be displayed --> <h1>Example of Spaces and Line Breaks in HTML</h1> <hr/> <!-- <pre> is used to keep natural spaces and line break in html page --> <pre> Twinkle, twinkle, little star How I wonder what you are Up above the world so high Like a diamond in the sky Twinkle, twinkle little star How I wonder what you are </pre> <p> <pre> is used to keep natural spaces and line breaks like poems in html page </p> </body> </html>