Desafio-1#13
Conversation
tarcilas
left a comment
There was a problem hiding this comment.
Parabéns, continue assim!
| <meta charset="utf-8"> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
| <link rel="stylesheet" href=""><script src=""></script> | ||
| <title>Womakerscode</title> |
There was a problem hiding this comment.
Coloca o favicon (icon.ico)
|
|
||
| <body> | ||
| <img src="images/logo.png" alt="Logo Womakers Code" width="100px"> | ||
| <ul> |
There was a problem hiding this comment.
Isso é um menu, não apenas uma lista, então sua tag nav com links para as respectivas seções do site.
| <li>Contato</li> | ||
| </ul> | ||
|
|
||
| <div class="welcome"> |
There was a problem hiding this comment.
É mais semântico usar a tag section para demarcar as seções
https://www.w3schools.com/tags/tag_section.asp
| <div class="welcome"> | |
| <section id="home" class="welcome"> |
| <div class="welcome"> | ||
| <h1>Bem vind@</h1> | ||
| <h2>Curabitur Iaculis</h2> | ||
| <h5>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras consequat ultricies facilisis. Quisque varius tortor eget lacus tincidunt cursus. </h5> |
There was a problem hiding this comment.
É uma boa prática respeitar a hierarquia dos Headings h1, h2, h3..., não usar só por causa do tamanho da fonte, pois isso depois será mudado na aplicação de estilos
|
|
||
|
|
||
| </div> | ||
| <div class="quem-eu"> |
There was a problem hiding this comment.
Seria legal já customizar os textos, foto, contatos e redes sociais com suas informações, afinal esse será seu portfólio.
No description provided.