-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (65 loc) · 2.23 KB
/
index.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
<!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=B, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Black Friday</title>
</head>
<body>
<section class="section-container background-section-one">
<img src="img/black-friday-logo2.jpg" alt="logo-black-friday" style="width: 100%">
</section>
<section class="section-container background-section-two">
<div class="card-container">
<div id = "content">
<form id = "form">
<input type="text" name="nome" id="nome" placeholder="Nome">
<input type="text" name="email" id="email" placeholder="Email">
<input type="submit" value="Enviar">
</form>
</div>
</div>
</section>
<section class="section-container background-section-one">
<div class="card">
<img src="img/bike1.jpg" alt="bicicleta" style="width:100%">
<div class="container">
<h4><b>Modelo BMX</b></h4>
<h5>Preço: R$ 1300,46</h5>
</div>
</div>
<div class="card">
<img src="img/bike2.jpg" alt="bicicleta" style="width:100%">
<div class="container">
<h4><b>Modelo City Bike</b></h4>
<h5>Preço: R$ 2469,42</h5>
</div>
</div>
<div class="card">
<img src="img/bike3.jpg" alt="bicicleta" style="width:100%">
<div class="container">
<h4><b>Modelo City Bike</b></h4>
<h5>Preço: R$ 3000,89</h5>
</div>
</div>
</section>
<footer>
<br>
<br>
<p><b>Desenvolvido por: Jessica Costa</b></p>
<p>
<a href="https://github.com/jessicacosta07" target="_blank">
<img src="img/icon-github.png">
</a>
</p>
<p>
<a href="https://www.linkedin.com/in/jessicosta94/" target="_blank">
<img src="img/icon-linkedin.png">
</a>
</p>
</footer>
</body>
<script src="js/script.js"></script>
</html>