-
Notifications
You must be signed in to change notification settings - Fork 0
/
catalogo.html
66 lines (65 loc) · 2.96 KB
/
catalogo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="pt-br">
<head>
<!-- Metas -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Star Wars - mLearn Frontend Challenge</title>
<meta name="description" content="Desafio de Frontend da mLearn">
<meta name="keywords" content="frontend,mobile first,layout responsivo,javascript,aplicativos híbridos">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="index, follow">
<!-- Fonts/links -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,300,700" rel="stylesheet" type="text/css">
<link rel="icon" href="img/favicon.png">
</head>
<body>
<header class="cabecalho">
<a href="index.html"><h1 class="logo"> Star Wars - mLearn Frontend Challenge ></h1></a>
<button class="btn-menu"><i class="fa fa-bars fa-lg"></i></button>
<nav class="menu">
<a class="btn-close"><i class="fa fa-times"></i></a>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="catalogo.html">Catálogo</a></li>
<li><a href="pesquisar.html">Pesquisar</a></li>
<li><a href="resultado.html">Resultado</a></li>
<li><a href="sobre.html">Sobre</a></li>
</ul>
</nav>
</header>
<div class="banner">
<div class="catalogo">
<h2>Catálogo</h2>
<form>
<input type="text" name="name" placeholder="name" disabled>
<input type="text" name="species" placeholder="species" disabled>
<input type="text" name="birth_year" placeholder="birth_year" disabled>
<button name="btNext" id="btNext" onclick=""> Próximo </button>
</form>
</div>
<div class="titulo">
<h3>All the Star Wars data you've ever wanted:
Planets, Spaceships, Vehicles, People, Films and Species
From all SEVEN Star Wars films
Now with The Force Awakens data!</h3>
</div>
</div>
<footer class="rodape">
<div class="social-icons">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-google"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-envelope"></i></a>
</div>
<p class="copyright">Copyright Desafio mLearn 2020. Todos os direitos reservados</p>
</footer>
<!-- Scripts -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>