-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
63 lines (57 loc) · 2.69 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
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Apresetação do Grupo</title>
<link rel="stylesheet" href="css/stylesheet.css">
</head>
<body>
<div class="wrapper">
<div class="box header">
<img class="image" src="img/man-using-laptop.jpg" alt="" width="600px" height="150px" style="float: left;">
<h1 style="text-align: right; font-size: 60px; margin: 0px 0px;">Página de Projetos</h1>
<h2 style="text-align: right; font-size: 30px; margin: 20px 0px;">Fatec Taquaritinga</h2>
</div>
<div class="box sidebar">
<nav>
<h1>Integrantes</h1>
<a href wm-nav="integrantes/alunoteste0.html">Prof Renato</a> <br>
<a href wm-nav="integrantes/alunoteste1.html">DEV01 - Aluno</a> <br>
<a href wm-nav="integrantes/alunoteste2.html">DEV02 - Aluno</a> <br>
<a href wm-nav="integrantes/alunoteste3.html">DEV03 - Aluno</a> <br>
<a href wm-nav="integrantes/alunoteste4.html">DEV04 - Aluno</a> <br>
<a href wm-nav="integrantes/matheus.html">DEV05 - Matheus</a> <br>
<a href wm-nav="integrantes/alunoteste6.html">DEV06 - Aluno</a> <br>
<h1>Avaliações</h1>
<a href wm-nav="/avaliacao1.html">1º Bim - Avaliação 1</a> <br>
<a href wm-nav="/avaliacao1.html">2º Bim - Projeto</a> <br>
</nav>
</div>
<div class="box content" id="conteudo">
<h1> Content </p>
<img class="image" src="img/teacher.png" alt="" width="400px" height="300px"
style="display: block; margin-left: auto; margin-right: auto;" ;>
</div>
<div class="box sidebar2">
<h2 style="text-align: center; margin-top: 0px;">Be a Profissional</h2>
<img class="image" src="img/sidebar2.jpg" alt="" width="100px" height="500px"
style="display: block; margin-left: auto; margin-right: auto;" ;>
</div>
<div class="box footer">
<img class="image" src="img/people-group.jpg" alt="" width="1250px" height="300px" style="float: left;">
</div>
</div>
<script>
document.querySelectorAll('[wm-nav]').forEach(link => {
const conteudo = document.getElementById('conteudo')
link.onclick = function (e) {
e.preventDefault()
fetch(link.getAttribute('wm-nav'))
.then(resp => resp.text())
.then(html => conteudo.innerHTML = html)
}
})
</script>
</body>
</html>