Skip to content

Instantly share code, notes, and snippets.

@arwer13
Created October 1, 2021 17:02
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 arwer13/6688bd69739d733d0275c2fa1a7bcbb0 to your computer and use it in GitHub Desktop.
Save arwer13/6688bd69739d733d0275c2fa1a7bcbb0 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<style>
body {
background-color: white;
text-align: center;
color: balck;
font-family: Arial, Helvetica, sans-serif;
}
</style>
</head>
<body>
<h1>Ultimate html paste example</h1>
<p>
<b>bold</b> and <i>italic</i> and <u>underline</u> and <s>strikethrough with s</s> and <del>strikethrough with del</del> and <strike>strikethrough with strike</strike> and <a href="https://ya.ru">link</a>
</p>
<p>Also some</p> <pre>pre text</pre> <p>and some <code>code text</code></p>
<p>And 3 emojis
&#128512; &#128516; &#128525;
</p>
<p>And unordered list</p>
<ul>
<li>line one</li>
<li>line two</li>
</ul>
<p>And ordered list</p>
<ol>
<li>line one</li>
<li>line two</li>
</ol>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment