-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtexto.html
More file actions
67 lines (55 loc) · 1.42 KB
/
Copy pathtexto.html
File metadata and controls
67 lines (55 loc) · 1.42 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
65
66
67
<!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;
font-size: 2.rem;
font-size:50vh;
font-size:10vw;
font-family: monospace;
font-family: Georgia, serif;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
font-weight: 100;
font-style: italic;
text-transform: uppercase;
word-spacing:10px;
letter-spacing: 20px;
line-height: 2.5em;
text-align:right;
}
.botao {
font-size: 20px;
text-decoration: none;
padding: 10px 30px;
border-radius: 25px;
}
.destaque {
color:#fff;
background: tomato;
box-shadow: 2px 2px 1px 1px #000;
}
.destaque:active {
box-shadow: none;
}
</style>
</head>
<body>
<div>
<p>
Que texto
<br>legal!!!
</p>
</div>
<a href="http://google.com" class="botao destaque">Google</a>
</body>
</html>