Built with blockbuilder.org
forked from sandravizmad's block: 2.1 html
| license: mit |
Built with blockbuilder.org
forked from sandravizmad's block: 2.1 html
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <html> | |
| <head> | |
| <link rel="preconnect" href="https://fonts.gstatic.com"> | |
| <link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&display=swap" rel="stylesheet"> | |
| <!-- Creating the headlines --> | |
| <h1>My main title</h1> | |
| <h2>My top level heading</h2> | |
| <h3>My subheading</h3> | |
| <h4>My sub-subheading</h4> | |
| </head> | |
| <body> | |
| <style> | |
| body { | |
| font-family: "Sofia"; | |
| font-size: 22px; | |
| } | |
| </style> | |
| <!-- Creating a paragraph --> | |
| <p>My cats class <strong>Soli & Felicita</strong> are</p> | |
| <!-- Creating a list --> | |
| <ul> | |
| <li>relaxed</li> | |
| <li>sweet</li> | |
| <li>always in the moment</li> | |
| </ul> | |
| </body> | |
| </html> |