-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (74 loc) · 1.89 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Index Centralizado</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-image: url('DALL·E 2024-09-20 07.15.25 - A beautiful landscape with rolling green hills and trees scattered across the terrain. The sky is a stunning shade of blue, clear and bright, with sof.webp'); /* Substitua pelo caminho da sua imagem */
background-size: cover;
background-position: center;
}
.container {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}
.box {
background-color: rgba(255, 255, 255, 0.8);
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
text-align: center;
}
h1 {
margin-bottom: 20px;
font-size: 24px;
color: #333;
}
ul {
list-style-type: none;
}
li {
margin: 10px 0;
}
a {
text-decoration: none;
font-size: 18px;
color: #333;
background-color: #f0f0f0;
padding: 10px 20px;
border-radius: 5px;
transition: background-color 0.3s ease;
}
a:hover {
background-color: #ccc;
}
</style>
</head>
<body>
<div class="container">
<div class="box">
<h1>Menu de Páginas</h1>
<ul>
<li><a href="Canafistula.html">Canafistula</a></li>
<li><a href="Cedro.html">Cedro</a></li>
<li><a href="Jeriva.html">Jeriva</a></li>
<li><a href="Pauviola.html">Pau-viola</a></li>
</ul>
</div>
</div>
</body>
</html>