Update index.html

This commit is contained in:
Innovation Inc 2019-09-18 20:30:59 -05:00 committed by GitHub
parent c555d1ab5b
commit c66789215b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,7 +55,7 @@
.br { .br {
position: absolute; position: absolute;
bottom: 0px; bottom: 0px;
right: 0px; right: 2px;
} }
.verticalcenter { .verticalcenter {
vertical-align: middle; vertical-align: middle;
@ -64,8 +64,6 @@
</style> </style>
</head> </head>
<body> <body>
<center>
<div class="verticalcenter">
<script> <script>
var current= new Date(); var current= new Date();
var month=current.getMonth(); var month=current.getMonth();
@ -73,6 +71,7 @@
function loadImage(image) { function loadImage(image) {
var x = document.createElement("IMG"); var x = document.createElement("IMG");
x.setAttribute("src", image); x.setAttribute("src", image);
x.setAttribute("class", "verticalcenter");
document.body.appendChild(x); document.body.appendChild(x);
} }
if (month=="3" && date=="13") { if (month=="3" && date=="13") {
@ -81,8 +80,6 @@
loadImage("load.gif"); loadImage("load.gif");
} }
</script> </script>
</div>
</center>
<p class="br">v0.1.4</p> <p class="br">v0.1.4</p>
</body> </body>
</html> </html>