2º Ano C - 2025.1

Desenvolvimento WEB 2

Arquivo: index.html
				
					<!DOCTYPE html>
<html lang="pt-br">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Página</title>
    <link rel="stylesheet" href="estilo.css">
</head>
<body>
    <div>
        <ul>
            <li>Link 1</li>
            <li>Link 2</li>
            <li>Link 3</li>
            <li>Link 4</li>
            <li>Link 5</li>
        </ul>
    </div>
</body>
</html>
				
			
Arquivo: estilo.css
				
					* {
    margin: 0;
    padding: 0;
}

div {
    background-color: #cecece;
    width: 200px;
    height: 100vh;
    font-size: 32px;
    font-family: sans-serif;
    padding-top: 30px;
    box-shadow: 0px 0px 10px black;
}

li {
    border-bottom: 1px solid black;
    padding: 20px;
}

li:hover {
    background-color: white;
    cursor: pointer;
}