-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (47 loc) · 1.72 KB
/
index.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trelov Odracir</title>
<!-- Importando a fonte JetBrains Mono com ligaduras ativadas -->
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<style>
/* Definições de estilos gerais */
body, html {
width: 100%;
height: 100%;
margin: 0;
font-family: 'JetBrains Mono', monospace;
background: linear-gradient(to right, #008080, #4B0082); /* Degrade do teal para o indigo */
display: flex;
justify-content: center;
align-items: center;
color: white;
text-align: center;
overflow: hidden;
font-feature-settings: "calt" 1; /* Enable ligatures for IE 10+, Edge */
font-variant-ligatures: common-ligatures contextual; /* Ativa ligaduras comuns e contextuais */
text-rendering: optimizeLegibility; /* Force ligatures for Webkit, Blink, Gecko */
}
h1 {
font-size: 3rem;
font-weight: 300;
letter-spacing: 2px;
white-space: nowrap;
display: inline-block;
line-height: 1.2;
animation: pulse 1.5s ease-in-out infinite;
}
/* Animação de pulsação para a mensagem */
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}
</style>
</head>
<body>
<h1>!= Hi, <br/> my name <br/> isn't <br/>~>Trelov!<~</h1>
</body>
</html>