HTML Editor
Live preview · in your browser
File name
Ủng hộ
/ Support
Donate
Upload
Download
Format
Copy
Reset
Clear
Auto refresh
Source
Valid
33 lines
·
0.7 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
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Hello Tiến 👋</title> <style> body { font-family: system-ui, sans-serif; display: grid; place-items: center; min-height: 100vh; margin: 0; background: linear-gradient(135deg, #6366f1, #06b6d4); color: white; } .card { background: rgba(255, 255, 255, 0.12); padding: 2rem 3rem; border-radius: 16px; backdrop-filter: blur(12px); text-align: center; } h1 { margin: 0 0 .5rem; } </style> </head> <body> <div class="card"> <h1>Welcome!</h1> <p>Upload your HTML file or start editing on the left.</p> </div> </body> </html>
Problems (0)
No syntax issues found. Nice work!
Preview