html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Translate</title>
<style>
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
body {
font-family: 'Poppins', sans-serif;
background: linear-gradient(135deg, #1e1e2e, #3a3a5e);
color: white;
text-align: center;
margin: 50px;
transition: all 0.5s ease-in-out;
overflow: auto;
}
.container {
max-width: 10000px;
margin: auto;
padding: 45px;
background: rgba(40, 42, 54, 0.9);
css
css
1
2
3
4
body
{
}
js
js
1
BROWSER
Console
Run