Fórum entrevista de emprego front-end #603803
20/07/2019
0
Eu estou em uma entrevista de emprego front-end e queria saber se o meu código que eu fiz esta bom para mandar (tem que ser feito so com html e css)
!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="../desafio_lemoney/index.css">
<title>Lemoney</title>
</head>
<body>
<div class="form">
<h1>
<img src="../desafio_lemoney/img/logo_lemoney.png" alt="logo_lemoney">
</h1>
<form class="cadastro" name="cadastro" action="http://arquivo.lemoney.com.br/projeto/requisicao.php" method="post">
<table class="formulario">
<div id="title">
<h2>Let's work together</h2>
<h3>Forming partnerships will help to create the cult for coffee</h3>
</div>
<div id="name">
<p>Your name*</p>
<input class="w3-input" type="text" name="name" required="" placeholder="Your name">
</div>
<div id="phone">
<p>Your phone*</p>
<input id="phone" type="tel" pattern="^\\d-\\d-\\d$" required="" placeholder="xx-xxxxx-xxxx">
</div>
<div id="subject">
<p>Subject*</p>
<select>
<option value="job1">I am a job seeker</option>
<option value="job2">I am a job seeker</option>
<option value="job3">I am a job seeker</option>
<option value="job4">I am a job seeker</option>
</select>
</div>
<div id="terms">
<input type="checkbox" id="updates" name="updates">
I would like to receive busines updates
</div>
<div id="botton">
<input type="submit" value="Let's go">
</div>
</table>
</form>
</div>
</body>
</html>
body{
width: auto;
height: auto;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 29px;
color: aliceblue;
}
.form{
display: flex;
}
.form h1{
text-align: center;
float: left;
margin: auto;
padding: 15% 0;
width: auto;
height: auto;
}
.form h1 img{
width: 90%;
background-color: #ffffff;
background-size: contain;
}
.cadastro{
float: right;
margin: 0% auto;
padding: 5% 20%;
width: 50%;
background-color: #11D66D;
}
.table{
text-align: center;
margin: 50px;
display: flex;
flex-wrap: wrap;
}
.cadastro table p,
.cadastro table h2{
text-align: center;
padding-block: inherit;
}
#title h2{
width: 100%;
}
#title h3{
font-weight: normal;
}
#botton input{
background-color:#ffffff;
color: #000000;
font-size: initial;
margin: auto 50%;
width: 150px;
height: 30px;
border-radius: 10px;
}
Romulo Lessa
Curtir tópico
+ 1
Responder
Posts
21/07/2019
Eduardo Rafael
Essa parte do código está correta?
Seria 4 opções: I am a job seeker ?
<select>
<option value="job1">I am a job seeker</option>
<option value="job2">I am a job seeker</option>
<option value="job3">I am a job seeker</option>
<option value="job4">I am a job seeker</option>
</select>Seria 4 opções: I am a job seeker ?
Responder
Gostei + 0
05/08/2019
Romulo Lessa
Essa parte do código está correta?
Seria 4 opções: I am a job seeker ?
<select>
<option value="job1">I am a job seeker</option>
<option value="job2">I am a job seeker</option>
<option value="job3">I am a job seeker</option>
<option value="job4">I am a job seeker</option>
</select>Seria 4 opções: I am a job seeker ?
sim era só pra dar um exemplo
Responder
Gostei + 0
Clique aqui para fazer login e interagir na Comunidade :)