36 lines
759 B
HTML
36 lines
759 B
HTML
<html>
|
|
<!-- classes were from SparrOS Developer Team -->
|
|
<title>DremJS</title>
|
|
<style>
|
|
.start {
|
|
position: absolute;
|
|
left: 0px;
|
|
bottom: 0px;
|
|
}
|
|
.cwhite {
|
|
color: white;
|
|
}
|
|
html {
|
|
background: url(DremJS-Background.png) no-repeat center center fixed;
|
|
-webkit-background-size: cover;
|
|
-moz-background-size: cover;
|
|
-o-background-size: cover;
|
|
background-size: cover;
|
|
}
|
|
div {
|
|
background-color: gray;
|
|
width: 50px;
|
|
padding: 50px;
|
|
border: 5px solid gray;
|
|
margin: 0;
|
|
}
|
|
}
|
|
</style>
|
|
<body>
|
|
<h1 class="cwhite">DremJS Version 0.0.1a</h1>
|
|
<div>
|
|
<a href="index-open.html"><p class="start">Start</p></a>
|
|
</div>
|
|
</body>
|
|
</html>
|