Skip to content
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

Desafio1-WomakersCode-Grupo5 #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

tamiresguesdri
Copy link

No description provided.

<!----------------------------------MENU TOPO--------------------------------------------->
<head>
<meta charset="utf-8">
<header>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tamiresguesdri, use a tag <header> dentro da tag <body>. O <head> usamos para definir as meta tags e importação de arquivos CSS, incluir o título da nossa página.

Suggested change
<header>
<body>
<header>
<figure>
<img src="" alt="ImagemBorboletaWomakersCode"/>
</figure>
<nav class="menu-topo">
<ul>
<li> Home </li>
<li> Serviços </li>
<li> Portfólio </li>
<li> Sobre mim </li>
<li> Contato </li>
</ul>
</nav>
</header>
</body>

</head>

<body>
<title>Bem Vind@</title>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<title>Bem Vind@</title>
<h1>Bem Vind@</h1>

A tag <title> a gente usa apenas no <head> para representar o título da nossa página (que aparece bem lá no topo do nosso browser) :) Aqui te dou a sugestão em usar a tag <h1> para definição de título.

<h2>Curabitur Iaculis</h2>
<h3>texto 3 linhas</h3>
<!-------------------------------------MENU PRINCIPAL----------------------------------------->
<br>
Copy link
Contributor

@alinebezzoco alinebezzoco Dec 19, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<br>
<br> <!-- Evite o uso de <br /> -->

Evite ao máximo o uso da tag <br /> para quebra de linha ou aumento de espaço entre os elementos. Caso o seu objetivo seja quebra de texto use a tag <p> que é específica para parágrafos. Se deseja obter um espaçamento entre uma seção ou outra use a propriedade CSS margin.

<!--------------------------------------INÍCIO MENU MEUS TRABALHOS---------------------------------->
<nav class="meus-trabalhos">
<h1>Meus Trabalhos</h1>
<ul id="menu-meus-trabalhos">
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<ul id="menu-meus-trabalhos">
<ul class="menu-meus-trabalhos">

Dica: em vez de usar id's, use classes. Id é recomendável usar para 1x para referenciar algum bloco de elemento, por exemplo. Classes você pode repetí-las em diversos momentos.

ID - Uma única por página. Identificador: #
CLASS - Múltiplas por elemento/página. Identificador: .



<!--------------------------------INÍCIO HABILIDADES-------------------------------------->
<section class="habilidades"></section>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<section class="habilidades"></section>
<section class="habilidades">
<h4>Habilidades</h4>
<ul>
<li>Javascript</li>
<li>HTML e CSS</li>
<li>CSS</li>
<li>WordPress</li>
</ul>
</section>

Coloque o conteúdo que você desenvolveu dentro da section Habilidades. A tag <title> não usamos para definir título de algum texto em html, apenas dentro da tag <head> como título da nossa página (que aparece lá em cima do nosso browser). Se você quer usar alguma tag que permita configurar título na sua página você pode usar o h1, h2, h3, h4, h5. Como no layout o título aparece em um tamanho menor usei o <h4> como exemplo.

Em vez de você usar o <p> para definir uma lista use as tags <ul> e <li> específicas para criação de listas.

<br>
<li>
<a href="#">
<figure>
Copy link
Contributor

@alinebezzoco alinebezzoco Dec 19, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<figure>
<img src="facebook.png" alt="Facebook" title="Facebook" />

A tag <figure> a gente usa para fazer marcação nas imagens. Então ele especifica que quando você usa o <figure> está informando que dentro dela terá uma imagem. E a tag <figcaption> serve para indicar uma legenda para ela.

Nesse caso de listar os ícones das redes sociais não há necessidade de usar a tag <figure>. A gente usa mais para destacar fotos e inserir legendas.

Referência: https://www.w3schools.com/tags/tag_figure.asp

Tá tudo bem, Tamires :) O importante é tentar, sempre! Parabéns pelo seu esforço e dedicação!

<br>

<li>
<a href="#">
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<a href="#">
<a href="#">
<img src="google.png" alt="Google +" title="Google +" />
</a>

</nav>
<br>
<h1>Quem sou eu</h1>
<img src="" alt="foto-tamires"/>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<img src="" alt="foto-tamires"/>
<figure><img src="" alt="foto-tamires"/></figure>
<figcaption>Tamires Rodrigues</figcaption>

Se aqui você pretende usar o <figcaption> a sua imagem precisa usar o <figure> para manter a semântica.

<figure>
<img src="" alt="templates">
</figure>
<h2><a href="#">Templates</a></h2>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<h2><a href="#">Templates</a></h2>
<a href="#">Templates</a>

Não é necessário incluir uma tag de hipertexto e link juntos. Neste caso você pode manter a tag <a> depois manipular via CSS o tamanho dela ( usando a propriedade font-size).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants