-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdi.html
33 lines (32 loc) · 863 Bytes
/
di.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Deu Certo!</title>
<style>
body{
font-family: Arial, Helvetica, sans-serif;
background-image: linear-gradient(to right, rgb(20, 147, 220), rgb(49, 17, 71))
}
.message {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-size: 10em;
font-weight: bold;
text-align: center;
color: black;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: white;
}
</style>
</head>
<body>
<div class="message">
DADOS INSERIDOS COM SUCESSO
</div>
</body>
</html>