Last active
December 4, 2020 03:05
-
-
Save OldBigBuddha/ca58e1bc0fe640339a63b651b4eeb11d to your computer and use it in GitHub Desktop.
HTML Sample
This file contains hidden or 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 lang="ja"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta name="description" content="HTML Sample"> | |
| <meta name="robots" content="noindex,nofollow"> | |
| <!-- OGP --> | |
| <meta property="og:url" content="https://dummy.url" /> | |
| <meta property="og:title" content="HTML Sample code" /> | |
| <meta property="og:image" content="https://dummy.url/img/ogp.webp" /> | |
| <meta property="og:description" content="HTML Sample" /> | |
| <title>HTML Sample code</title> | |
| </head> | |
| <body> | |
| <h1>Heading 1</h1> | |
| <h2>Heading 2</h2> | |
| <h3>Heading 3</h3> | |
| <h4>Heading 4</h4> | |
| <h2>Paragraph</h2> | |
| <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum vel vulputate nibh, at blandit enim. Aliquam | |
| hendrerit cursus dolor in dignissim. Nam erat lorem, rutrum vel augue eget, sagittis hendrerit orci. In eu sollicitudin | |
| ipsum, varius pulvinar est. Nullam posuere pharetra nunc at congue. Integer accumsan, ligula a aliquet eleifend, nisl | |
| ante porta nisl, non pellentesque eros ipsum id orci. Praesent at tellus ultrices, scelerisque magna egestas, | |
| sollicitudin ipsum. Donec vel viverra turpis, sed consectetur metus. Suspendisse et fermentum ex. In tempus iaculis | |
| sapien ac accumsan. Aliquam sit amet dui enim. Mauris et lorem egestas, sagittis justo nec, tempus ipsum. Donec in | |
| libero rhoncus, vestibulum odio eget, maximus metus.</p> | |
| <h2>Description/Definition</h2> | |
| <dl> | |
| <dt>Declare</dt> | |
| <dd>Description</dd> | |
| </dl> | |
| <h2>Image</h2> | |
| <p>Logo | <a href="https://oldbigbuddha.dev">Simple is Best</a></p> | |
| <img src="https://raw.githubusercontent.com/OldBigBuddha/Blog/master/themes/chord/source/images/logo.png" alt="Simple is Best"/> | |
| <p><small>© 2020 OldBigBuddha.</small></p> | |
| <h2>Link</h2> | |
| <p><a href="https://google.com">Google</a> | |
| <a href="https://twitter.com">Twitter</a> | |
| <a href="https://github.com">GitHub</a></p> | |
| <h2>List</h2> | |
| <ul> | |
| <li>List</li> | |
| <li>List</li> | |
| <li>List</li> | |
| <li>List</li> | |
| </ul> | |
| <ol> | |
| <li>List</li> | |
| <li>List</li> | |
| <li>List</li> | |
| <li>List</li> | |
| </ol> | |
| <h2>Table</h2> | |
| <table> | |
| <thead> | |
| <tr> | |
| <th colspan="3">The table header</th> | |
| </tr> | |
| </thead> | |
| <tbody> | |
| <tr> | |
| <th>Label</th> | |
| <td>Data</td> | |
| <td>Data</td> | |
| </tr> | |
| <tr> | |
| <th>Label</th> | |
| <td>Data</td> | |
| <td>Data</td> | |
| </tr> | |
| <tr> | |
| <th>Label</th> | |
| <td>Data</td> | |
| <td>Data</td> | |
| </tr> | |
| <tr> | |
| <th>Label</th> | |
| <td>Data</td> | |
| <td>Data</td> | |
| </tr> | |
| </tbody> | |
| </table> | |
| <p><small>© 2020 OldBigBuddha.</small></p> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment