Welcome, guest! Login / Register - Why register?
Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)

Paste

Pasted as HTML by Renatin ( 2 years ago )
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
        /* Altera a cor do texto para vermelho */
        li {
            color: red;
        }

        /* Adiciona um espaçamento de 10px entre os itens da lista */
        li + li {
            margin-top: 10px;
        }

        /* Altera a fonte para Arial */
        li {
            font-family: Arial, sans-serif;
        }
    </style>
    <title>Lista de Disciplinas</title>
</head>
<body>
    <h1>Lista de Disciplinas</h1>
    <ul>
        <li>Disciplina 1</li>
        <li>Disciplina 2</li>
        <li>Disciplina 3</li>
        <li>Disciplina 4</li>
        <li>Disciplina 5</li>
    </ul>
</body>
</html>

 

Revise this Paste

Your Name: Code Language: