Create bellard.html

This commit is contained in:
Innovation Inc 2019-09-19 00:42:47 -05:00 committed by GitHub
parent b7a08be31c
commit c113ea12f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,103 @@
<html>
<head>
<title>DremJS Market</title>
<style>
.box-blue {
margin:0 0 5px;
overflow:hidden;
padding:5px;
background-color:#FFFFFF;
border:1px solid #8b8b8b;
-webkit-border-radius: 5px;
border-radius: 5px;
}
.box-blue-emb-left {
margin:0 0 0px;
overflow:hidden;
padding:0px;
background-color:#009ac7;
border-radius: 5px;
position: absolute;
left: 10px;
width: 48%;
text-align: center;
}
.box-blue-emb-right {
margin:0 0 0px;
overflow:hidden;
padding:0px;
background-color:#009ac7;
border-radius: 5px;
position: absolute;
right: 10px;
width: 48%;
text-align: center;
}
.buttonWrapper {
width:95%;
margin: auto;
text-align: center;
}
.rel-uemb {
position: relative;
left: 25px;
}
.rel-emb {
position: absolute;
top: 2px;
}
.cwhite {
color: #FFFFFF;
}
html, body {
height: 100%;
margin: 0;
padding: 0;
}
img {
padding: 0;
display: block;
margin: 0 auto;
max-height: 100%;
max-width: 100%;
}
</style>
</head>
<body>
<script>
function clickSound(page) {
window.globalPage=page;
var audio = new Audio('https://github.com/sparrdrem/DremJS-Market/blob/master/select.wav?raw=true');
audio.play();
setTimeout(gotoPage, 2000);
}
function gotoPage(page) {
window.location.href = globalPage;
}
</script>
<div class="box-blue">
<p><img style="padding: 5 15px; float: left;" src="snapshot.png" /></p>
<p style="margin-top: 20px;"> </p>
<h2>Bellard JSLinux</h2>
<p>Innovation Inc.</p>
<p>Released: 2018</p>
<br />
<p>Our computers can't seem to understand how to use the make command so we made an app that connects directly to the demo website. You can connect your VFsync account to most of the OSes on this site to save your files, so you don't lose everything due to going to the home screen.</p>
<p>Although Innovation Inc. created this application, we did not create Bellard JSLinux.</p>
<p>Bellard JSLinux was completely created by Fabrice Bellard.</p>
</div>
<div class="buttonWrapper">
<div class="box-blue-emb-left" onclick="clickSound('https://github.com/sparrdrem/DremJS-Market/releases/download/Apps/Bellard-JSLinux.zip')">
<h3 class="cwhite">Download</h2>
<hr />
<h3 class="cwhite">Version 1.0.0</h3>
</div>
<div class="box-blue-emb-right" onclick="clickSound('../../index-enter.html')">
<h3 class="cwhite">Go Back</h3>
<hr />
<h3 class="cwhite">DremJS Market</h3>
</div>
</div>
</body>
</html>