25 lines
379 B
HTML
25 lines
379 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Hello World</title>
|
||
|
<style>
|
||
|
h1 {
|
||
|
position: relative;
|
||
|
top: 50%;
|
||
|
transform: translateY(-50%);
|
||
|
|
||
|
margin: 0;
|
||
|
|
||
|
text-align: center;
|
||
|
color: white;
|
||
|
background: black;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<h1>Hello World!</h1>
|
||
|
</body>
|
||
|
</html>
|