38 lines
857 B
HTML
38 lines
857 B
HTML
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
color: white;
|
|
font-family: -apple-system, 'Segoe UI', 'Roboto', 'Arial', sans-serif;
|
|
background: linear-gradient(45deg, #4e95ff, #6032e4, #c478ff);
|
|
}
|
|
|
|
div {
|
|
width: 350px;
|
|
text-align: center;
|
|
border-radius: 5px;
|
|
background: linear-gradient(45deg, #61a0ff, #6737e9, #cb86ff);
|
|
}
|
|
|
|
body, div {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
h1 {
|
|
padding: 1em;
|
|
font-size: 24px;
|
|
font-weight: normal;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<h1>Hello Ultralight!</h1>
|
|
</div>
|
|
</body>
|
|
</html> |