-
Notifications
You must be signed in to change notification settings - Fork 25
/
raphael.html
83 lines (76 loc) · 2.06 KB
/
raphael.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
83
<!doctype html>
<html lang="en">
<head>
<title>Title</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<style>
body{
background:rgb(030, 030, 030);
}
h1{
margin-top:20px;
color:white;
text-align:center;
}
hr{
background-color:white;
width:50%;
align-content:center;
}
p{
color:white;
text-align:center;
}
b{
animation: nome 2s ease-in-out infinite alternate;
}
@keyframes nome{
0% {color: red;}
25% {color: yellow;}
50% {color: blue;}
100% {color: green;}
}
.container{
margin-top:4rem;
}
.card{
border:5px solid rgb(52, 2, 99);
background-color:rgb(52, 2, 99);
}
img{
width:50%;
margin:30px auto;
border-radius:15px;
box-shadow:10px 15px 5px;
animation: anima 1.5s ease-in-out infinite alternate;
}
@keyframes anima{
from{
transform: translateY(-20px);
}
to{
transform: translateY(-5px);
}
}
</style>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="card">
<h1>Olá, futuros estranhos</h1>
<div class="row">
<hr>
</div>
<p>Chamo-me <b>RAPHAEL</b></p>
<img src="https://file.coinexstatic.com/2023-11-02/C24D778EAEEE7442297366BBC450A49C.png">
</div>
</div>
</div>
</div>
</body>
</html>