-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (114 loc) · 4.78 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!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>JM Skateshop</title>
<link rel="icon" type="image/x-icon" href="#">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<main class="container">
<header class="mt-4 p-5 bg-light rounded">
<h1 class="h1 text-center">Sejam bem-vindos à JM Skateshop</h1>
</header>
<section class="container mt-4 p-5">
<!--************** First row; 3 columns **************-->
<section class="row">
<article class="col card">
<article class="card-body">
<a href="templates/produtos/produto.html">
<figure>
<img src="statics/images/parafusos.jpg" alt="Product img" width=100% class="img-thumbnail"></img>
</figure><br>
<figcaption class="text-center fw-bold" id="demo">Produto 1</figcaption></a>
</article>
</article>
<article class="col card">
<article class="card-body">
<a href="templates/produtos/produto2.html">
<figure>
<img src="statics/images/lixa.jpg" alt="Product img" width="100%" class="img-thumbnail"></img>
</figure><br>
<figcaption class="text-center fw-bold">produto 2</figcaption></a>
</article>
</article>
<article class="col card">
<article class="card-body">
<a href="templates/produtos/produto3.html">
<figure>
<img src="statics/images/amortecedores.jpg" alt="Product img" width="100%" class="img-thumbnail"></img>
</figure><br>
<figcaption class="text-center fw-bold">produto 3</figcaption></a>
</article>
</article>
</section>
<!--************** Second row; 3 columns **************-->
<section class="row">
<article class="col card">
<article class="card-body">
<a href="templates/produtos/produto4.html">
<figure>
<img src="statics/images/peças.jpg" alt="Product img" width="100%" class="img-thumbnail"></img>
</figure><br>
<figcaption class="text-center fw-bold">Produto 4</figcaption></a>
</article>
</article>
<article class="col card">
<article class="card-body">
<a href="templates/produtos/produto5.html">
<figure>
<img src="statics/images/roda-skate.jpg" alt="Product img" width="100%" class="img-thumbnail"></img>
</figure><br>
<figcaption class="text-center fw-bold">produto 5</figcaption></a>
</article>
</article>
<article class="col card">
<article class="card-body">
<a href="templates/produtos/produto6.html">
<figure>
<img src="statics/images/rolamentos.jpg" alt="Product img" width="100%" class="img-thumbnail"></img>
</figure><br>
<figcaption class="text-center fw-bold">produto 6</figcaption></a>
</article>
</article>
</section>
<!--************** Third row; 3 columns **************-->
<section class="row">
<article class="col card">
<article class="card-body">
<a href="templates/produtos/produto7.html">
<figure>
<img src="statics/images/shape.jpg" alt="Product img" width="100%" class="img-thumbnail"></img>
</figure><br>
<figcaption class="text-center fw-bold">Produto 7</figcaption></a>
</article>
</article>
<article class="col card">
<article class="card-body">
<a href="templates/produtos/produto8.html">
<figure>
<img src="statics/images/truck.jpg" alt="Product img" width="100%" class="img-thumbnail"></img>
</figure><br>
<figcaption class="text-center fw-bold">produto 8</figcaption></a>
</article>
</article>
<article class="col card">
<article class="card-body">
<a href="templates/produtos/produto9.html">
<figure>
<img src="statics/images/skate_completo.jpg" alt="Product img" width="100%" class="img-thumbnail"></img>
</figure><br>
<figcaption class="text-center fw-bold">produto 9</figcaption></a>
</article>
</article>
</section>
</section>
</main>
<footer class="bg-light p-2 rounded">
<p class="text-center">Site criado por Jefferson Mattos</p>
</footer>
<script src="statics/scripts/scripts.js"></script>
</body>
</html>