Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
loeasy68
GitHub Repository: loeasy68/loeasy68.github.io
Path: blob/main/Business/index.js
2937 views
1
function prices() {
2
jelluy().renderPage(`
3
<h1>Prices</h1>
4
<ol>
5
<li>Beginner-5 months access Plus Previews</li>
6
<ul>
7
<li>$5 per week</li>
8
<li>$20 per month</li>
9
<li>$240 per year</li>
10
</ul>
11
<li>Medium-10 months access Plus Editor</li>
12
<ul>
13
<li>$10 per week</li>
14
<li>$40 per month</li>
15
<li>$480 per year</li>
16
</ul>
17
<li>Serious-Unlimited months access Plus Previews and Editor</li>
18
<ul>
19
<li>$20 per week</li>
20
<li>$80 per month</li>
21
<li>$960 per year</li>
22
</ul>
23
</ol>
24
`,`
25
26
`)
27
}
28
jelluy().startSite(`
29
<h1 style="text-align: center">Welcome LoganHTTPServices</h1>
30
31
<div>
32
<h3>Prices</h3>
33
<button onclick="prices()">Get the prices</button>
34
</div>
35
`,`
36
37
`)
38
39