Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

[Projeto] Meu projeto Final de curso : HTML e CSS

style.css

header {
    font-size: 28px;
    color: yellowgreen;
    text-align: center;
    font-style:oblique;
    font-weight: bold;
    }
    
main {
    margin: 0 auto;
    width: 50%;
    padding: 10px;
    background-color: #000000;
    color: #08d3ae;
    border-radius: 4%;
    box-shadow: 0 0 30px #08d3ae;
}  

body {
    background-color: #000000;
    color: #08d3ae;
}

h1 {
    font-size: 27px;
    color: #fff;
    text-align: center;
}

p {
    color: #33953d;
    font-size: 18px;
}

strong {
    color: lightgreen;
    font-size: 28px;
    }

img{
    max-width: 20%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 30%;
    box-shadow: 0 0 30px #08d3ae;

    }

button {
    background-color: #4CAF50;
    color: white;
    border-radius: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 18px;
    width: 9%;
    display: auto;

}

footer {
    text-align: center;
      
}

index.html

</html>

<!DOCTYPE html>
<html lang="pt-br">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Meu Portfólio</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <header>Explorando novas oportunidades em Desenvolvimento</header>
    <main>
        <h1>De <strong>Análise de Suporte</strong> para <strong>Desenvolvimento</strong></h1>
        <p>Seja bem-vindo! Sou Richard, em transição para a área de desenvolvimento e aprimorando minhas habilidades em Front-end na Escola Alura.</p>
        
        <img src="Foto Github 2025.jpeg" alt="Minha foto fo GitHub">

        <p>Ao longo da minha jornada profissional, desenvolvi um conjunto valioso de habilidades técnicas e interpessoais que me ajudam a enfrentar desafios e evoluir constantemente.</p>
        <p>Essas competências, aliadas ao meu aprendizado contínuo em desenvolvimento, me tornam um profissional preparado para novas oportunidades e desafios na área de tecnologia.</p>
        
        <ul>
            <li>Determinação</li>
            <li>Habilidades de Negociação</li>
            <li>Resiliência</li>
            <li>Paciência</li>
            <li>Empatia</li>
            <li>Team Work</li>
            <li>Foco</li>
            <li>Comunicação</li>
        </ul>
        

    </main>
    <footer>
        <p>Você pode me conhecer melhor e entrar contato comigo clicando nos botões abaixo:</p>

        <button> <a href="https://www.linkedin.com/in/richard-ribeiro-374369/">Linkedin</a></button>
        <button> <a href="https://github.com/Rich2024br">Github</a></button>
    </footer>        
</body>
</html>

https://projeto-final-do-curso-html-e-css-alura.vercel.app/

1 resposta
solução!

Ficou muito legal!