- Construindo a estrutura HTML do portfólio
<!DOCTYPE html>
<html lang="en">
<head>
<title>Meu Portifólio</title>
</head>
<body>
<h1>Meu Portifólio</h1>
<h2>Seja muito bem-vindo ao Meu Portifólio</h2>
<a href="https://www.instagram.com/kel.emanoel_/">Instagram</a>
<a href="https://github.com/kelvynemanoel">Github</a>
<img src="minha-foto.jpg" alt="Minha foto">
</body>
</html>
- Estruturando a página com tags semânticas
<!DOCTYPE html>
<html lang="en">
<head>
<title>Meu Portifólio</title>
</head>
<body>
<header></header>
<main>
<h1>Meu Portifólio</h1>
<h2>Seja muito bem-vindo ao Meu Portifólio</h2>
<a href="https://www.instagram.com/kel.emanoel_/">Instagram</a>
<a href="https://github.com/kelvynemanoel">Github</a>
<img src="minha-foto.jpg" alt="Self de Kelvyn">
</main>
<footer>
<p>Telefone: 99 99999-9999</p>
<p>© Copyrigths - Protegido por direitos autorais</p>
</footer>
<img src="minha-foto.jpg" alt="Minha foto">
</body>
</html>
- Entendendo e aplicando as tags meta
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meu Portifólio</title>
</head>
<body>
<header></header>
<main>
<h1>Meu Portifólio</h1>
<h2>Seja muito bem-vindo ao Meu Portifólio</h2>
<a href="https://www.instagram.com/kel.emanoel_/">Instagram</a>
<a href="https://github.com/kelvynemanoel">Github</a>
<img src="minha-foto.jpg" alt="Self de Kelvyn">
</main>
<footer>
<p>Telefone: 99 99999-9999</p>
<p>© Copyrigths - Protegido por direitos autorais</p>
</footer>
</body>
</html>
- Inserindo e formatando elementos no HTML
<!DOCTYPE html>
<html lang="br-pt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meu Portifólio</title>
</head>
<body>
<header></header>
<main>
<h1>Eleve seu negócio digital a outro nível <strong>com um Front-end de qualidade!</strong></h1>
<p>Olá! Sou Kelvyn Emanoel, desenvolvedor Front-end com especialidade em HTML e CSS. Ajudo pequenos negócios e designers a colocarem em prática boas ideias. Vamos conversar?</p>
<a href="https://www.instagram.com/kel.emanoel_/">Instagram</a>
<a href="https://github.com/kelvynemanoel">Github</a>
<img src="minha-foto.jpg" alt="Self de Kelvyn">
</main>
<footer>
<p>Telefone: 99 99999-9999</p>
<p>© Copyrigths - Protegido por direitos autorais</p>
</footer>
</body>
</html>
- Incorporando imagens com tags HTML
<!DOCTYPE html>
<html lang="br-pt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meu Portifólio</title>
</head>
<body>
<header></header>
<main>
<h1>Eleve seu negócio digital a outro nível <strong>com um Front-end de qualidade!</strong></h1>
<p>Olá! Sou Kelvyn Emanoel, desenvolvedor Front-end com especialidade em HTML e CSS. Ajudo pequenos negócios e designers a colocarem em prática boas ideias. Vamos conversar?</p>
<a href="https://www.instagram.com/kel.emanoel_/">Instagram</a>
<a href="https://github.com/kelvynemanoel">Github</a>
<img src="minha-foto.jpg" alt="Self de Kelvyn em um local movimentado">
</main>
<footer>
<p>Telefone: 99 99999-9999</p>
<p>© Copyrigths - Protegido por direitos autorais</p>
</footer>
</body>
</html>