-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
79 lines (73 loc) · 2.19 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="menu.css" type="text/css">
<title>Ínicio</title>
<style>
.image{
margin: 30px;
text-align: center;
}
.alink{
background-color: #571669;
display: flex;
width: 180px;
padding: 8px;
margin: 10px;
color: white;
border-radius: 5px;
border: 1px;
}
.alink:hover{
background-color: white;
color: #571669;
}
.adoacao{
float: right;
background-color: #571669;
display: flex;
width: 180px;
padding: 8px;
margin: 10px;
color: white;
border-radius: 5px;
border: 1px;
}
.adoacao:hover{
background-color: white;
color: #571669;
}
</style>
</head>
<body>
<div class="menu">
<div id="areaLogo">
<H1 id="principal">UEMG SOLIDÁRIA</H1>
</div>
<div id="areaMenu">
<a class="links" href="index.html">Início</a>
<a class="links" href="campanha.html">Campanha</a>
<a class="links" href="hospital.html">Hospital</a>
<a class="links" href="curso.html"> Curso Sistemas de Informação</a>
<a class="links" href="uemg.html">UEMG</a>
</div>
</div>
<div class="image">
<img src="./Images/campanha.jpg" width="30%">
</div>
<div>
<p><a class="alink" href="login.html">Login</a></p>
<p><a class="alink" href="cadastro.html">Cadastre-se</a></p>
<p><a class="alink" href="ranking.html">Acompanhe o Ranking</a></p>
</div>
<div>
<p><a class="adoacao" href="doacao.html">Doe</a></p>
<p><a class="adoacao" href="confirmacao.html">Confirma Doação</a></p>
</div>
<footer class="footer">
Todos os direitos reservados
</footer>
</body>
</html>