2. CSS y HTML 1

2. CSS y HTML 1

by didacticode

HTML

<!DOCTYPE html>
<html>
    <head>
        <title>HTML5 - Identificadores</title>
        <style>
          #inicial {
            color: red;
            border: 1px solid black;
          }
        </style>
    </head>
    <body>
      <p id="inicial">Este es el primer párrafo</p>
      <p>Este es el segundo párrafo</p>
      <p>Este es el tercer párrafo</p>
      <p>Este es el cuarto párrafo</p>
      <p>Este es el quinto párrafo</p>
    </body>
</html>