ejercicio2.html 609 Bytes
Newer Older
roshka committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <link rel="stylesheet" href="ejercicio2.css">
    <title>Ejercicio de Pseudo clases de enlaces</title>
</head>
<body>
    <div class="link">
        <a href="https://www.twitter.com"> <p>Enlace número 1</p></a> <br>
        <a href="https://www.slack.com"> <p>Enlace número 2</p></a> <br>
        <a href="https://www.youtube.com"> <p>Enlace número 3</p></a> <br>
        <a href="https://www.nokia.com"> <p>Enlace número 4</p></a> <br>
        <a href="https://www.hp.com"> <p>Enlace número 5</p></a> <br>
    </div>
</body>
</html>