-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Desafio-1 #13
base: master
Are you sure you want to change the base?
Desafio-1 #13
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
É 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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
É 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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seria legal já customizar os textos, foto, contatos e redes sociais com suas informações, afinal esse será seu portfólio.
No description provided.