-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtexto.html
More file actions
49 lines (44 loc) · 1 KB
/
texto.html
File metadata and controls
49 lines (44 loc) · 1 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Texto</title>
<link href="https://fonts.googleapis.com/css?family=Indie+Flower" rel="stylesheet">
<style>
/* ... */
* {
margin: 0;
}
body {
display: flex;
flex-direction: column;
align-items: center;
}
p{
font-size: 40px;
font-family: cursive;
font-weight: 100;
font-style: italic;
text-transform: uppercase;
text-decoration: overline;
word-spacing: 3px;
}
.botao{
background: blanchedalmond;
font-size: 20px;
border-radius: 10px;
padding: 10px 20px;
box-shadow: 300px black;
}
</style>
</head>
<body>
<div>
<p>
Que texto
<br>legal!!!
</p>
</div>
<a href="http://google.com" class="botao destaque">Google</a>
</body>
</html>