<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Camila Rocha - Moda & Lifestyle</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>
Transforme seu estilo de vida
<strong>com autenticidade e confiança!</strong>
</h1>
<p>Olá! Sou <span>Camila Rocha</span>, influenciadora digital apaixonada por moda, bem-estar e empreendedorismo feminino. Compartilho conteúdos que inspiram mulheres a se expressarem com estilo e propósito. Vamos nos conectar?</p>
<img src="camila.png" alt="Foto da Camila Rocha sorrindo com look casual"><br>
<a href="https://instagram.com/camilarocha">Instagram</a><br>
<a href="https://youtube.com/camilarocha">YouTube</a><br>
<a href="https://tiktok.com/@camilarocha">TikTok</a><br>
</body>
</html>
Css
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
color: #333;
margin: 40px;
line-height: 1.6;
}
h1 {
font-size: 2em;
color: #444;
}
strong {
color: #7a7a7a;
font-weight: bold;
}
span {
color: #555;
font-style: italic;
}
img {
width: 300px;
border-radius: 8px;
margin-top: 20px;
}
a {
display: inline-block;
margin-top: 10px;
color: #666;
text-decoration: none;
}
a:hover {
color: #000;
}