Skip to content

PR para correção e comentários#6

Open
paula-aribeiro wants to merge 13 commits intocomentarios-exerciciofrom
master
Open

PR para correção e comentários#6
paula-aribeiro wants to merge 13 commits intocomentarios-exerciciofrom
master

Conversation

@paula-aribeiro
Copy link
Copy Markdown

No description provided.

Copy link
Copy Markdown
Author

@paula-aribeiro paula-aribeiro left a comment

Choose a reason for hiding this comment

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

Oi pessoal, parabéns pelo trabalho em equipe para construir a landing page de vocês, ficou muito legal!

As páginas comunicaram bem o produto e a empresa que passamos. Vocês também fizeram uma boa escolha de cores e fonte baseando na logomarca. O layout ficou show! Gostei que vocês tiveram o cuidado de padronizar o menu em todas as páginas, a usabilidade ficou bem fluida. Um ponto negativo foi o excesso de target="_blank" para abrir páginas em outras guias. Ele é mais indicado quando o link é externo. Caso contrário, seu site abre muitas páginas no navegador do usuário (e ele fica bravo hehe)

Em relação ao código, tem alguns erros de organização que comentei abaixo, mas no geral vocês fizeram um bom uso do HTML5, o CSS está bem comentado e vocês foram um dos poucos grupos que fizeram deploy 😄

Muito bem pessoal, continuem evoluindo 🚀

Comment thread index.html
Comment on lines +40 to +41
<p>Nossos produtos</p><br>
<p>Conheça os seguros que a 4Safe oferece e escolha o ideal para você.</p><br>
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

Não use br para ajustar o espaçamento, prefira usar o CSS (padding e margin) para isso

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

Sim, bem observado! Me pergunto por quê coloquei ele.... rsrs

Comment thread index.html
Comment on lines +60 to +82
<footer>
<section id="firstSectionFooter">
<div>
<div id="subtitleFooter">
<h3>Entre em contato conosco clicando abaixo!</h3>
</div>
<div id="linkFooter">
<a href="contact.html" target="_blank"><img src="img/chat (1).svg" width="70px" height="70px"></a>
</div>
</div>
</section>
<section id="secondSectionFooter">
<div>
<p>4Safe ®</p>
</div>
<div id="iconFooter">
<img src="img/facebook.png" width="30px" height="30px">
<img src="img/instagram.png" width="30px" height="30px">
</div>
</div>

</section>
</footer>
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

Cuidado com indentação

Comment thread index.html
Comment on lines +76 to +77
<img src="img/facebook.png" width="30px" height="30px">
<img src="img/instagram.png" width="30px" height="30px">
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

Faltou o link para as redes sociais

Comment thread index.css
color: white;
}

a:houver {
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

Aqui deveria ser hover e não "houver"

Comment thread index.css
Comment on lines +1 to +76
* {
margin: 0px;
padding: 0px;
list-style: none;
font-family: 'Arial', sans-serif;
font-size: 16pt;
}

a {
text-decoration: none;
color: white;
}

a:houver {
cursor: pointer;
}
/* Costomização header */

#logo4safe {
max-height: 110px;
}

.header {
background-color: #3b4f66;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
padding: 10px;
}

.menu {
display: flex;
}

.menu li {
margin-left: 25px;
font-size: 18px;
}

.linha {
height: 10px;
background-color: #9bd46d;
}

@media (max-width: 450px) {
.menu {
padding-top: 10px;
}
#firstSectionFooter {
display: flex;
flex-direction: column;
}
#imgFooter {
display: flex;
width: auto;
}
#formDiv {
margin: 15px;
}
footer {
height: auto;
}
#message {
width: 183px;
height: 50px;
}
#subtitleFooter h3 {
font-size: 12pt;
}
#secondSectionFooter p {
font-size: 10pt
}
}
/*FIM-HEADER*/
/*SEÇÃO*/
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

Cuidado com indentação

Comment thread sobre.css
Comment on lines +9 to +15
#sectionsobre {
display: flex;
margin-left: auto;
margin-right: auto;
margin-top: 80px;
margin-bottom: 80px;
}
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

Essa página ficou com o texto muito próximo da borda, tanto no modelo desktop

image

quanto no mobile
image

Comment thread contact.html
Comment on lines +13 to +23
<header class="header">
<img id="logo4safe" src="./img/logocabecario.png">

<nav>
<ul class="menu">
<li><a target="_blank" href="sobre.html">Sobre</a></li>
<li><a target="_blank" href="produtos.html">Produtos</a></li>
<li><a target="_blank" href="contact.html">Contato</a></li>
</ul>
</nav>
</header>
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

Cuidado com indentação

Comment thread contact.html
Comment on lines +27 to +55
<div id="mainTitle">
<h3>Preencha o formulario</h3>
</div>
<div id="formMain">
<div id="formDiv">
<p>A 4safe agradece o seu interesse em entrar em contato conosco, responderemos o mais breve possível.
<p>
<form id="formContainer">
<div>
<label for="name">Seu Nome?</label>
<br>
<input type="text" id="name" />
</div>
<div>
<label for="e-mail">Seu E-mail:</label>
<br>
<input type="email" id="mail" />
</div>
<div>
<label for="message">Sua Mensagem:</label>
<br>
<textarea id="message"></textarea>
</div>
<div class="button">
<button id="formButton" type="submit">Enviar</button>
</form>

</div>
</div>
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

Cuidado com indentação

Comment thread contact.css
Comment on lines +14 to +27
#formButton {
box-shadow: -4px 5px 8px 0px #313738;
background: linear-gradient(to bottom, #385f71 5%, #3b4f66 100%);
background-color: #59a2bd;
border-radius: 7px;
border: 1px solid #36607b;
cursor: pointer;
color: #ffffff;
font-size: 12px;
font-weight: bold;
padding: 6px 15px;
text-decoration: none;
text-shadow: 0px 1px 0px #3d768a;
}
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

Cool!

Comment thread contact.css
Comment on lines +63 to +65
#formButton {
margin-top: 5px
}
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

Isso poderia estar aqui
image

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.

4 participants