Displaying demos/hack/index.html<!DOCTYPE html>
<html>
<head>
<title> Start hacking </title>
<meta charset='utf-8'>
<style>
#center {
width: 100px;
text-align: center;
margin: 0 auto;
height: 90vh;
overflow: hidden;
}
button {
width: 100px;
height: 50px;
margin-top: 45vh;
}
</style>
</head>
<body>
<div id='center'>
<a href='hack.html'><button type='button'> Start Hacking </button></a>
</div>
</body>
|