Created
January 19, 2022 09:05
-
-
Save callezenwaka/6b850afeda30e43bd8f2104ce9b7a5c0 to your computer and use it in GitHub Desktop.
Add space in html file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title> | |
How to insert spaces/tabs in text using HTML/CSS? | |
</title> | |
</head> | |
<body> | |
<h1 style="color: green">GeeksforGeeks</h1> | |
<b>How to insert spaces/tabs in text using HTML/CSS?</b> | |
<p>This is a regular space.</p> | |
<p>This is a   two spaces gap.</p> | |
<p>This is a   four spaces gap.</p> | |
<a href="https://www.geeksforgeeks.org/how-to-insert-spaces-tabs-in-text-using-html-css/">Copied From</a> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment