tc362/files/index.html

25 lines
379 B
HTML
Raw Normal View History

2014-01-15 15:09:51 -05:00
<!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>