-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (103 loc) · 4.08 KB
/
index.html
File metadata and controls
103 lines (103 loc) · 4.08 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
body{
font-family: 'Courier New', Courier, monospace;
color: greenyellow;
background-image: url("./images/pong.gif");
background-size: cover;
}
#head{
background-color: honeydew;
padding: 10px;
margin: 50px;
}
#turmas{
display: flex;
align-content: flex-start;
align-items: center;
}
ul.alunos{
border-style: solid;
border-color: greenyellow;
}
img:not(#head){
height: 350px;
width: 450px;
}
div{
border-style: groove;
border-color: greenyellow;
background-color: black;
padding: 50px;
}
div#turmas{
border-style: none;
background: none;
}
h1{
padding: 50px;
background-color: black;
}
p{
padding-left: 50px;
}
#text{
border: none;
}
a:link{
color: yellow;
}
a:visited{
color: green;
}
#turma1 + #turma2{
margin-left: 15px;
}
</style>
<title>2019.2</title>
</head>
<body>
<img src="./images/codifique.png" alt="not-found" id="head">
<h1>Projeto Codifique</h1>
<div id="text">
<p>O codifique é um projeto que visa abrir os horizontes dos alunos do ensino médio com relação à programação. Durante o curso, os alunos aprenderam sobre estruturas básicas</p>
<p>da programação e desenvolveram uma versão do clássico jogo PONG. Tudo criado exclusivamente por eles sob a orientação dos nossos monitores. Aqui, os alunos e seus familiares</p>
<p>e amigos podem ver os frutos de seus trabalhos durante o semestre:</p>
</div>
<div id="turmas">
<div id="turma1">
<img src="./images/turma1.jpg" alt="not-found">
<ul class="alunos">
<caption>Turma 1 (quartas-feiras)</caption>
<li><a href="./alunos/AliceKageyama/index.html">Alice Kageyama</a></li>
<li><a href="./alunos/ArthurFelipeRestier/index.html">Arthur Restier</a></li>
<li><a href="./alunos/BrenoRodrigues/index.html">Breno Rodrigues</a></li>
<li><a href="./alunos/DenisDominiconi/index.html">Denis Dominiconi</a></li>
<li><a href="./alunos/JoaoVictorDantas/index.html">João Victor Dantas</a></li>
<li><a href="./alunos/JosePedroDaSilva/index.html">José Pedro da Silva</a></li>
<li><a href="./alunos/LeonardoMellado/index.html">Leonardo Mellado</a></li>
<li><a href="./alunos/LucasKendi/index.html">Lucas Kendi</a></li>
<li><a href="./alunos/LucasLemo/index.html">Lucas Lemo</a></li>
<li><a href="./alunos/PedroSouza/index.html">Pedro Souza</a></li>
<li><a href="./alunos/WalmirLuizReali/index.html">Walmir Luiz Reali</a></li>
</ul>
</div>
<div id="turma2">
<img src="./images/turma2.jpg" alt="not-found">
<ul class="alunos">
<caption>Turma 2 (quintas-feiras)</caption>
<li><a href="./alunos/aluno1/index.html">aluno1</a></li>
<li><a href="./alunos/aluno1/index.html">aluno2</a></li>
<li><a href="./alunos/aluno1/index.html">aluno3</a></li>
</ul>
</div>
</div>
<h2>Links úteis:</h2>
<ul>
<li><a href="https://www.pointerpointer.com/" target="_blank">something</a></li>
</ul>
</body>
</html>