-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
147 lines (146 loc) · 4.48 KB
/
index.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="logo.svg" />
<link rel="stylesheet" href="style.css" />
<script src="script.js"></script>
<meta property="og:title" content="vSuS" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://vsus.tobycm.systems" />
<meta property="og:image" content="https://vsus.tobycm.systems/logo.svg" />
<meta
property="og:description"
content="vSuS - Deployable VM-like coding environments, access from anywhere, for everyone - Feels like home everywhere, anytime"
/>
<meta name="theme-color" content="#2b2d31" />
<title>vSuS</title>
</head>
<body>
<section id="bar">
<section class="barInside">
<div>
<img src="img/icon/TobyCloudLogo.png" />
<h3>TobyCloud</h3>
</div>
<button id="darkmodeButton" class="dark-mode-for-button" onclick="darkmode()"><span id="darkmodeIcon" class="material-symbols-outlined">
dark_mode
</span></button>
</section>
</section>
<header>
<div id="vSuSTitle">
<img id="logo" src="logo.svg" alt="vSuS Logo"/>
<h1>vSuS</h1>
</div>
<p class="center-text">
Deployable VM-like coding environments, access from anywhere, for everyone.
</p>
</header>
<section id="view">
<img
src="img/vscode.png"
alt="Visual Studio Code on the web"
/>
<div>
<h2>Integrated Visual Studio Code on the Web</h2>
<p>
Visual Studio Code on the Web is a great tool for developers due to
its accessibility from any device, collaborative features, extensive
extension ecosystem, and user-friendly interface.
</p>
</div>
</section>
<img src="img/pricing_banner.png" style="width: 100%">
<section id="pricing">
<table>
<tr>
<th></th>
<th><h2>Basic</h2></th>
<th><h2>Pro</h2></th>
<th><h2>God</h2></th>
</tr>
<tr>
<td id="features">Price</td>
<td>Free</td>
<td><strong>$5</strong>/month or <strong>$55</strong>/year</td>
<td><strong>$15</strong>/month or <strong>$165</strong>/year</td>
</tr>
<tr>
<td id="features">vCPUs</td>
<td>1</td>
<td>4</td>
<td>12</td>
</tr>
<tr>
<td id="features">vRAMs</td>
<td>2</td>
<td>8</td>
<td>32</td>
</tr>
<tr>
<td id="features">Online VSCode</td>
<td>✓</td>
<td>✓</td>
<td>✓</td>
</tr>
<tr>
<td id="features">Online Markdown Editor</td>
<td>✓</td>
<td>✓</td>
<td>✓</td>
</tr>
<tr>
<td id="features">Chat</td>
<td>✓</td>
<td>✓</td>
<td>✓</td>
</tr>
<tr>
<td id="features">Always On</td>
<td>✓</td>
<td>✓</td>
<td>✓</td>
</tr>
<tr>
<td id="features">SSH, HTTP Expose</td>
<td>✓</td>
<td>✓</td>
<td>✓</td>
</tr>
<tr>
<td id="features">Packages <i>(Docker, JavaScript, Java, etc.)</i></td>
<td>5</td>
<td>20</td>
<td>60</td>
</tr>
<tr>
<td id="features">CI/CD Jobs</td>
<td>1</td>
<td>2</td>
<td>4</td>
</tr>
<tr>
<td id="features"></td>
<td><h4>Default Plan</h4></td>
<td><a href=""><h3 class="plans_buy_button dark-mode" id="pro">Buy</h3></a></td>
<td><a href=""><h3 class="plans_buy_button dark-mode" id="god">Buy</h3></a></td>
</tr>
</table>
</section>
<footer id="bar" style="background-color: black;">
<section class="barInside">
<p>Copyright © 2023 TobyCloud™. All rights reserved.</p>
<p>
<a href="">Privacy Policy</a> |
<a href="">Terms of Use</a> |
<a href="">Legal</a>
</p>
<p>Made with 💖 in Antelope, CA</p>
</section>
</footer>
</body>
</html>