Skip to content

Instantly share code, notes, and snippets.

@abhishekjakhar
Created October 14, 2018 04:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abhishekjakhar/901219749db1e891b9e5a64c13451216 to your computer and use it in GitHub Desktop.
Save abhishekjakhar/901219749db1e891b9e5a64c13451216 to your computer and use it in GitHub Desktop.
Paragraphs in HTML
<!DOCTYPE html>
<html>
<head>
<title>HTML - A short guide</title>
</head>
<body>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<p>This is yet another paragraph.</p>
<p>
This is a paragraph containing
many lines in the code,
but the browser will
ignore these lines.
</p>
<p>
This is a paragraph
containing many spaces
in the code,
but the browser will
ignore these spaces.
</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment