-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (38 loc) · 1.73 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
<!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' />
<!-- FAVICON -->
<link rel='shortcut icon' href='./src/assets/favicon.png' type='image/png' />
<!-- CSS -->
<link rel='stylesheet' href='./src/css/styles.css' />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.css">
<!-- JAVASCRIPT -->
<script defer src='./src/js/scripts.js'></script>
<title>Carrossel de Produtos por Categoria</title>
<!-- GOOGLE FONTS -->
<!-- Google tag (gtag.js) -->
<script async src='https://www.googletagmanager.com/gtag/js?id=G-TJQ2XJZPTD'></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-TJQ2XJZPTD');
</script>
</head>
<body>
<div class="tabs">
<button class="tab-link active" data-category="novidades">Novidades</button>
<button class="tab-link" data-category="mais_vendidos">Mais vendidos</button>
<button class="tab-link" data-category="fantasias">Fantasias</button>
<button class="tab-link" data-category="jogos">Jogos</button>
<button class="tab-link" data-category="diversao">Diversão</button>
</div>
<div class="product-carousel"></div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.js"></script>
</body>
</html>