28 lines
563 B
HTML
28 lines
563 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Hello Bro</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
height: 100vh;
|
|
background: #0a0f2f;
|
|
color: #f4d03f;
|
|
font-family: 'Helvetica', 'Segoe UI', sans-serif;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
h1 {
|
|
font-size: min(12vw, 120px);
|
|
text-align: center;
|
|
letter-spacing: 0.15em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Hello bro 👊</h1>
|
|
</body>
|
|
</html>
|