-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (88 loc) · 3.15 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>Oficina 3D</title>
<meta charset="UTF-8">
<meta name="author" content="Igor Gomes - 41994434 e Roque - 419943732">
<link rel="stylesheet" type="text/css" href="estilo/estilo.css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header>
<h1>Oficina 3D</h1>
<nav>
<Ul>
<li><a href="index.html">Home</a></li>
<li><a href="historia.html">História</a></li>
<li><a href="mitos.html">Mitos</a></li>
<li><a href="aplicacoes.html">Aplicações</a></li>
<li><a href="funciona.html">Como Funciona</a></li>
<li><a href="materias.html">Materiais</a></li>
<li><a href="opine.html">Opine</a></li>
</Ul>
</nav>
</header>
<div class="w3-display-container">
<a href="funciona.html"><img class="mySlides" src="imgs/impressora3d.jpg" style="width:100%; height: 450px ;"></a>
<a href="aplicacoes.html"><img class="mySlides" src="imgs/medicina.png" style="width:100%; height: 450px ;"></a>
<a href="materias.html"><img class="mySlides" src="imgs/fazer.jpg" style="width:100%; height: 450px ;"></a>
<a href="mitos.html"><img class="mySlides" src="imgs/mito.png" style="width:100%; height: 450px ;"></a>
<button class="w3-button w3-black w3-display-left" onclick="plusDivs(-1)">❮</button>
<button class="w3-button w3-black w3-display-right" onclick="plusDivs(1)">❯</button>
</div>
<footer>
<h2>Informações Desenvolvedores</h2>
<section class="footer-container">
<section class="conteudoEsquerdaFooter">
<article class="imagemEsquerda">
<img src="imgs/icon.png" height="150px">
</article>
<aside class="informacoesDireita">
<B>
<h4>Igor Gomes</h4>
</B>
<p>TIA: 41994434</p>
<p>Email: [email protected]</p>
</aside>
</section>
<aside class="conteudoDireitaFooter">
<article class="imagemEsquerda">
<img src="imgs/icon.png" height="150px" alt="Imagem desenvolvedor Igor">
</article>
<aside class="informacoesDireita">
<B>
<h4>Roque</h4>
</B>
<p>TIA: 419943732</p>
<p>Email: [email protected]</p>
</aside>
</aside>
</section>
<footer class="footerInformacoes">
<h5>Site criado por Igor e Roque alunos da turma 01J de Sistemas de Informação da Universidade
Prebisteriana
Mackenzie</h5>
<h5>
</footer>
<script src="https://www.w3schools.com/lib/w3.js"></script>
<script>
var slideIndex = 1;
showDivs(slideIndex);
function plusDivs(n) {
showDivs(slideIndex += n);
}
function showDivs(n) {
var i;
var x = document.getElementsByClassName("mySlides");
if (n > x.length) { slideIndex = 1 }
if (n < 1) { slideIndex = x.length }
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
x[slideIndex - 1].style.display = "block";
}
w3.slideshow(".mySlides", 5000);
</script>
</footer>
</body>
</html>