Pagina base HTML+CSS

PHOTO EMBED

Thu Feb 16 2023 17:14:48 GMT+0000 (Coordinated Universal Time)

Saved by @mraimondi3

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>Titolo della pagina</title>
    <style>
      /* Regole CSS per i contenuti */
      body {
        font-family: Arial, sans-serif;
        font-size: 16px;
        color: #333;
        background-color: #fff;
      }

      h1 {
        font-size: 28px;
        font-weight: bold;
        color: #008080;
        text-align: center;
        margin-top: 50px;
        margin-bottom: 30px;
      }

      p {
        line-height: 1.5;
        margin-bottom: 20px;
      }

      a {
        color: #008080;
        text-decoration: none;
      }

      a:hover {
        text-decoration: underline;
      }
    </style>
  </head>
  <body>
    <h1>Titolo della pagina</h1>
    <p>Questo è un esempio di pagina HTML con stile CSS. Qui puoi inserire il tuo contenuto, utilizzando le tag HTML appropriate come &lt;p&gt;, &lt;a&gt;, &lt;img&gt; e altre ancora.</p>
    <p>Puoi anche creare dei link cliccabili come questo: <a href="#">Cliccami!</a></p>
  </body>
</html>
content_copyCOPY