Gostaria de uma revisão do meu código e tirar uma dúvida: Existe algum tipo de "boas práticas" pra descrição do alt da img?
Segue:
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfólio de Drielle Morodes</title>
</head>
<body>
<header>
<nav>
<ul>
<li>
<a href="">Início</a>
</li>
<li><a href="">Contato</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h1>
Eleve seu negócio digital a outro nível
<strong>com um Front-end de qualidade</strong>!
</h1>
<p>
Sou Drielle Morodes, desenvolvedora Front-end com especialidade em
React, HTML e CSS e conhecimento em Design. Ajudo pequenos negócios a
colocarem em prática boas ideias. Vamos conversar?
</p>
<a href="https://www.instagram.com/driellemorodes" target="_blank"
>Instagram</a
>
<a href="https://github.com/driellemorodes" target="_blank">Github</a>
</section>
<section>
<img
src="assets/imagem.png"
alt="Imagem decorativa de uma tag HTML e código binário"
/>
</section>
</main>
<footer>
<p>
Ligue para
<a href="tel:5531989704360">(31) 98970-4360</a>
</p>
<p>
Mande uma mensagem para
<a href="mailto:driellemorodes@gmail.com?subject=Vamos conversar!"
>driellemorodes@gmail.com</a
>
</p>
</footer>
</body>
</html>