-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd-produtc.html
81 lines (71 loc) · 4.17 KB
/
add-produtc.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AluraGeek</title>
<link rel="stylesheet" href="assets/styles/main.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
</head>
<body>
<header class="container">
<div class="nav__infos">
<a href="index.html"><img class="nav__logo" alt="Alura Geek" src="./assets/images/Logo-alurageek.svg" href="index.html"></a>
<label for="home__search" class="search__input"></label>
<input class="nav__search" id="home__search" type="search" placeholder="O que deseja encontrar?">
</div>
<a class="nav__login__button" href="login.html">Login</a>
<i class="search__button icon-search"></i>
</header>
<main>
<section class="add__product-form">
<div class="add__product container">
<h2 class="add__product-title">Adicionar novo produto</h2>
<div class="form__add-product">
<div class="drag__file"></div>
<span>ou</span>
<label for="product__img" id="img-product" class="form__add-image"></label>
<input type="file" id="product__img" accept="image/*">
</div>
<label for="product__name" id="product__name" class="form__product-input"></label>
<input type="name" id="product__name" class="form__product-name" placeholder="Qual o nome do produto?">
<label for="product__price" id="product__price" class="form__product-input"></label>
<input type="number" id="product__price" class="form__product-price" placeholder="Qual o valor do produto?">
<label for="description" class="description"></label>
<textarea name="description" class="form__product-description" id="description" cols="30" rows="5" placeholder="Descrição do produto"></textarea>
<button class="form__add-product-button">Adicionar produto</button>
</div>
</section>
</main>
<footer>
<section class="footer_infos container">
<img class="footer__logo" src="./assets/images/Logo-alurageek.svg" alt="Alura Geek">
<nav class="footer__nav">
<ul class="footer__nav-list">
<li class="footer__nav-itens"><a class="footer-link" href="#">Quem somos nós</a></li>
<li class="footer__nav-itens"><a class="footer-link" href="#">Política de privacidade</a></li>
<li class="footer__nav-itens"><a class="footer-link" href="#">Programa de fidelidade</a></li>
<li class="footer__nav-itens"><a class="footer-link" href="#">Nossas lojas</a></li>
<li class="footer__nav-itens"><a class="footer-link" href="#">Quero ser franqueado</a></li>
<li class="footer__nav-itens"><a class="footer-link" href="#">Anuncie aqui</a></li>
</ul>
</nav>
<form class="form__footer">
<h4 class="form__footer-title">Fale conosco</h4>
<label for="name" class="form__footer-name"></label>
<input type="text" name="nome" id="name" class="form__footer-username" placeholder="Nome">
<label for="message" class="message"></label>
<textarea name="mensagem" class="form__footer-message" id="message" cols="30" rows="5" placeholder="Escreva sua mensagem"></textarea>
<button class="form__footer-button">Enviar mensagem</button>
</form>
</section>
<section class="footer__info container">
<p>Desenvolvido por <strong>Lucas Sbaraini</strong></p>
<p>2022</p>
</section>
</footer>
</body>
</html>