Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <style>
- div {
- background-color: lightgrey;
- width: 300px;
- padding: 50px;
- border: 15px solid green;
- margin: 20px;
- }
- </style>
- </head>
- <body>
- <h1>Demonstrating the Box Model</h1>
- <h2>esempio di tag h2</h2>
- <p>The CSS box model is essentially a box that wraps around every HTML element. It consists of: borders, padding, margins, and the actual content.
- <span style="color:blue;font-weight:bold">blue</span>
- <span style="color:green;font-weight:bold">green</span>
- <span style="color:yellow;font-weight:bold">yellow</span>
- </p>
- <div>This text is the content of the box. We have added a 50px padding, 20px margin and a 15px green border. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</div>
- <h2>esempio di lista:</h2>
- <ul>
- <li>un elemento</li>
- <li>altro elemento</li>
- <li>altro elemento ancora</li>
- </ul>
- Esempio di ordered list:
- <ol>
- <li>uno</li>
- <li>due</li>
- <li>tre</li>
- <li>quattro</li>
- </ol>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement