-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (74 loc) · 2.06 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
<!--
Autor: Jorge Marcelo
Data de Criação: 26/08/2023
Github: https://github.com/Jorge-Marcelo
Linkedin: https://www.linkedin.com/in/jorge-marcelo-067a5017b/
Instagram: https://www.instagram.com/10_stronger/
Threads: https://www.threads.net/@10_stronger
-->
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Carrossel</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='css/style.css'>
</head>
<body>
<!--Tag principal-->
<main>
<!--Container do carrossel-->
<section class="container">
<h1>Carrossel Javascript</h1>
<figure class="image-container">
<img src="assets/img/carrossel/1.png" id="img1" class="active slider-img">
<img src="assets/img/carrossel/2.png" id="img2" class="slider-img">
<img src="assets/img/carrossel/3.png" id="img3" class="slider-img">
<img src="assets/img/carrossel/4.png" id="img4" class="slider-img">
<img src="assets/img/carrossel/5.png" id="img5" class="slider-img">
</figure>
<!--Container dos circulos indicadores-->
<article class="contaier-indicadores">
<button onclick="indicador(0)"></button>
<button onclick="indicador(1)"></button>
<button onclick="indicador(2)"></button>
<button onclick="indicador(3)"></button>
<button onclick="indicador(4)"></button>
</article>
<!--Botões de proximo e avançar -->
<button id="anterior" onclick="anterior()"> < </button>
<button id="proximo" onclick="proximo()"> > </button>
<!--Rodape e Redes Sociais-->
<footer>
<table>
<tr>
<td>
<button class="social" id="github">
<img src="assets/img/footer/github.png">
</button>
</td>
<td>
<button class="social" id="linkedin">
<img src="assets/img/footer/linkedin.png">
</button>
</td>
<td>
<button class="social" id="instagram">
<img src="assets/img/footer/insta.png">
</button>
</td>
<td>
<button class="social" id="threads">
<img src="assets/img/footer/threads.png">
</button>
</td>
</tr>
</table>
</footer>
<h1>By:Jorge Marcelo</h1>
</section>
</main>
<script src='js/script.js'></script>
</body>
</html>