Skip to content

Instantly share code, notes, and snippets.

@Davoleo
Last active July 10, 2019 15:42
Show Gist options
  • Save Davoleo/6f662e506ecc3f79fed87d460dc57a6f to your computer and use it in GitHub Desktop.
Save Davoleo/6f662e506ecc3f79fed87d460dc57a6f to your computer and use it in GitHub Desktop.
HTML formatting
<html>
<head>
<title>First Page</title>
</head>
<body>
<p>Regular Text </p>
<p><strong> Bold Text </strong></p>
<p><big> Big Text </big></p>
<p><em> Italic Text </em></p>
<p><small> small text </small></p>
<p><sub> subscripted text </sub></p>
<p><sup> superscripted text </sup></p>
<p><ins> inserted text </ins></p>
<p><del> deleted text </del></p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment