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> | |
| <!-- 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> | |
| <!-- Creating a paragraph --> | |
| <p>My cats <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> |