-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmurilo.html
More file actions
64 lines (62 loc) · 1.53 KB
/
murilo.html
File metadata and controls
64 lines (62 loc) · 1.53 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Página Murilo</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
color: #333;
text-align: center;
margin: 0;
padding: 0;
}
h1 {
color: #2c3e50;
margin-top: 20px;
}
h2 {
color: #16a085;
margin-bottom: 20px;
}
img {
max-width: 100%;
height: auto;
border: 2px solid #16a085;
border-radius: 10px;
margin: 20px 0;
}
button {
background-color: #16a085;
color: white;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
margin: 20px 0;
}
button a {
color: white;
text-decoration: none;
}
button:hover {
background-color: #13856a;
}
.but{
color: #13856a;
}
</style>
</head>
<body>
<h1>Página Murilo</h1>
<h2>Página Estilizada</h2>
<h3>FFLCH</h3>
<div>
<img src="https://media1.tenor.com/m/4-2ipSO3LyAAAAAd/roger-guedes-corinthians-x-palmeiras.gif" alt="Roger Guedes">
</div>
<button class="but"><a href="index.html">Página</a></button>
</body>
</html>