-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (45 loc) · 1.45 KB
/
index.html
File metadata and controls
47 lines (45 loc) · 1.45 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>atividades_Java</title>
<link rel="stylesheet" type="text/css" href="stiloinicio.css">
</head>
<body>
<header>
<div class="container">
<div id="logo">
<img src="imagens/logo.png" width="200px">
</div>
<div id="titulo">
<h1>Atividades de Java</h1>
</div>
</div>
</header>
<div id="principal">
<div class="efeito">
<div class="container">
<h2>Bem-vindos</h2>
<p>
Esta página foi criada com o intuito de facilitar o estudo das atividades realizadas em sala de aula na matéria de Linguagem de Programação ministrada pelo professor José Antônio.
</p>
<p>
Clique em INICIAR para ser direcionado para a primeira lista de atividades!
</p>
<p>
Bons estudos !
</p>
</div>
</div>
<!--Redirecionamento para a atividade 1-->
<div style="width:250px;height:100px;margin:auto;">
<a href="atividades1.html">INICIAR</a>
</div>
</div>
<footer> <!--rodape do site-->
<img src="imagens/logo.png" height="20px">
Criado por Natan Silva e Victor José de Souza
<img src="imagens/logo.png" height="20px">
</footer>
</body>
</html>