This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-featured.html
112 lines (111 loc) · 4.71 KB
/
index-featured.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<html>
<head>
<!--<audio loop autoplay>
Aw fiddle sticks. What now? (ERROR: 1040-0001)
Your browser doesn't support the AUDIO tag! Get a newer browser or update it
<source src="music.mp3" type="audio/mp3">
</audio>-->
<title>DremJS Market</title>
<style>
.box-blue {
margin:0 0 25px;
overflow:hidden;
padding:5px;
background-color:#FFFFFF;
border:1px solid #8b8b8b;
-webkit-border-radius: 5px;
border-radius: 5px;
}
.box-blue-emb {
margin:0 0 25px;
overflow:hidden;
padding:8px;
background-color:#009ac7;
-webkit-border-radius: 5px;
border-radius: 5px;
}
.rel-uemb {
position: relative;
left: 25px;
}
.rel-emb {
position: relative;
left: 10px;
}
.cwhite {
color: #FFFFFF;
}
</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>
<h1>DremJS Market</h1>
<hr />
<div class="box-blue">
<div class="box-blue-emb">
<h1 class="rel-emb">Featured Items</h1>
</div>
<table border="0px">
<tbody>
<tr>
<td width="48%" onclick="clickSound('downloadPages/CollectionJS/collectionjs.html')"><h2 class="rel-uemb">Collection.JS</h2>
<p class="rel-uemb">A collection of JS apps such as emulators and applications. A sort of bundle app you could say!</p></td>
<td width="48%" onclick="clickSound('downloadPages/SYGTVG/sygtvg.html')"><h2 class="rel-uemb">Sam&Yoe Group: The Video Game</h2>
<p class="rel-uemb">Play the Game Directly on DremJS!</p></td>
</tr>
</tbody>
<tbody>
<tr>
<td width="48%" onclick="clickSound('downloadPages/Bellard/bellard.html')"><h2 class="rel-uemb">Bellard JSLinux</h2>
<p class="rel-uemb">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></td>
</tr>
</tbody>
</table>
</div>
<center>
<button onclick="clickSound('index-enter.html')">Start Shopping</button>
<!--
<h2>Collection.JS</h2>
<p>A collection of JS apps such as emulators and applications. A sort of bundle app you could say!</p>
<p>Provided by SparrOSDeveloperTeam</p>
<input type="button" value="Download" onclick="window.location.href='https://github.com/sparrdrem/DremJS-Market/releases/download/Apps/Collection-JS.zip'" />
<hr />
<h2>Bellard JSLinux</h2>
<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>Provided by Innovation Inc.</p>
<input type="button" value="Download" onclick="window.location.href='https://github.com/sparrdrem/DremJS-Market/releases/download/Apps/Bellard-JSLinux.zip'" />
<hr />
<h2>Paint</h2>
<p>A paint app based on iamshanedoyle's "Simple Paint App".</p>
<p>Provided by Innovation Inc.</p>
<input type="button" value="Download" onclick="window.location.href='https://github.com/sparrdrem/DremJS-Market/releases/download/Apps/Paint.zip'" />
<hr />
<h2>PVT Counter</h2>
<p>PewDiePie vs. T-Series Counter - Go PewDiePie!</p>
<p>Provided by Innovation Inc.</p>
<input type="button" value="Download" onclick="window.location.href='https://github.com/sparrdrem/DremJS-Market/releases/download/Apps/PVT-Counter.zip'" />
<hr />
<h2>Sam&Yoe Group: The Video Game</h2>
<p>Play the Game Directly on DremJS!</p>
<p>Provided by SparrDrem</p>
<input type="button" value="Download" onclick="window.location.href='https://github.com/sparrdrem/DremJS-Market/releases/download/Apps/SYGTVG.zip'" />
<hr />
<h2>TinyMCE</h2>
<p>The TinyMCE text editor on DremJS!</p>
<p>Provided by Innovation Inc.</p>
<input type="button" value="Download" onclick="window.location.href='https://github.com/sparrdrem/DremJS-Market/releases/download/Apps/tinymce.zip'" />
-->
<hr />
<p>Send any apps you want added to the DremJS Market to innovationinc123@gmail.com</p>
</body>
</html>