-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
733 lines (673 loc) Β· 23.3 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
<!DOCTYPE html>
<html>
<head>
<title>ZeroScript</title>
<link rel="icon" href="/zeroscript_logo.svg" type="image/svg+xml">
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
/>
<meta name="theme-color" content="#1E1E1E" />
<link rel="stylesheet" href="styles.css" />
<!-β twitter card tags additive with the og: tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:domain" value="ZeroScript.org" />
<meta name="twitter:title" value="ZeroScript" />
<meta name="twitter:description" value="Build webapps with zero JavaScript. ZeroScript is a syntax for templating HTML and handling events in any language." />
<meta name="twitter:image" content="https://zeroscript.org/zeroscript_logo.png" />
<meta name="twitter:url" value="https://zeroscript.org/" />
<!-β facebook open graph tags -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://zeroscript.org/" />
<meta property="og:title" content="ZeroScript" />
<meta property="og:description" content="Build webapps with zero JavaScript. ZeroScript is a syntax for templating HTML and handling events in any language." />
<meta property="og:image" content="https://zeroscript.org/zeroscript_logo.png" />
</head>
<body>
<main>
<header>
<h1>
<expression>ZeroScript</expression>
</h1>
<a href="https://github.com/schmylan/zeroscript"
><img src="github.svg"
/></a>
<a href="https://twitter.com/zeroscript_org"><img src="x.svg" /></a>
</header>
<section id="intro" class="intro">
<img src="zeroscript_logo.svg" style="height: 192px" />
<h2>Build webapps with <em>zero</em> JavaScript</h2>
<p>
ZeroScript is an HTML-like syntax designed for building rich web
applications using languages other than JavaScript.
</p>
<p>
This goal remains unrealistic until other languages can both generate
HTML <i>and</i> manipulate the DOM. The solution is to use an
HTML-first approach β instead of putting HTML inside your logic,
ZeroScript puts your logic inside your HTML.
</p>
<code class="font3vw">
<pre>
<tag-open>button <attr-name>onclick</attr-name>=<expression><i>...expression...</i></expression></tag-open>
Clicks: <expression>count</expression>
<tag-close>button</tag-close></pre>
</code>
<p>
This is NOT intended to be implemented by browsers or engines nor is
it a proposal for the HTML spec itself. Think of it like Markdown β a
small set of "preprocessor rules" for yielding predictable results
regardless of underlying language or platform.
</p>
</section>
<header class="progress">
<h3>Learn ZeroScript</h3>
<h4>3 minutes</h4>
</header>
<!-- components -->
<section id="learn" class="code-sample learn">
<p>
If you know HTML, you're already 90% there. Learn the rest in just 3
minutes...
</p>
</section>
<header class="progress">
<h3>Components</h3>
<h4>1 of 14</h4>
</header>
<!-- components -->
<section id="components" class="code-sample components">
<code class="font6vw">
<pre>
<comment>MyButton.html</comment>
<tag-open>button</tag-open>
Click me
<tag-close>button</tag-close>
</pre>
</code>
<p>Components are just vanilla HTML files. No imports necessary.</p>
</section>
<header class="progress">
<h3>Attributes</h3>
<h4>2 of 14</h4>
</header>
<!-- attributes -->
<section id="attributes" class="code-sample attributes">
<code class="font5vw">
<pre>
<comment>index.html</comment>
<tag-open>html</tag-open>
<tag-open>body</tag-open>
<tag-self-close>MyButton
<attr-name>message</attr-name>=<attr-value>"Click me"</attr-value>
</tag-self-close>
<tag-close>body</tag-close>
<tag-close>html</tag-close>
</pre>
</code>
<p>Use attributes to pass read-only values into a component.</p>
</section>
<!-- attributes -->
<section class="code-sample attributes">
<code class="font5vw">
<pre>
<comment>index.html</comment>
<tag-open>html</tag-open>
<tag-open>body</tag-open>
<tag-self-close>MyButton
<attr-name>message</attr-name>=<attr-value>"Click me"</attr-value>
<attr-name>max</attr-name>=<attr-unquoted>10</attr-unquoted>
<attr-name>reset</attr-name>=<attr-unquoted>false</attr-unquoted>
</tag-self-close>
<tag-close>body</tag-close>
<tag-close>html</tag-close>
</pre>
</code>
<p>
Use JSON-like syntax to strongly-type numbers and booleans (<a
href="https://www.w3.org/TR/2011/WD-html5-20110405/tokenization.html#attribute-value-unquoted-state"
>unquoted attributes</a
>).
</p>
</section>
<header class="progress">
<h3>Expressions</h3>
<h4>3 of 14</h4>
</header>
<!-- expressions -->
<section id="expressions" class="code-sample expressions">
<code class="font5vw">
<pre>
<comment>index.html</comment>
<tag-open>html</tag-open>
<tag-open>body</tag-open>
<tag-self-close>MyButton
<attr-name>message</attr-name>=<attr-value>"Click me"</attr-value>
<attr-name>max</attr-name>=<attr-unquoted>10</attr-unquoted>
<attr-name>reset</attr-name>=<attr-unquoted>false</attr-unquoted>
<attr-name>expires</attr-name>=<expression>date</expression>
</tag-self-close>
<tag-close>body</tag-close>
<tag-close>html</tag-close>
</pre>
</code>
<p>
Complex objects and arrays can be passed as attributes when escaped as
an expression <expression> </expression>.
</p>
</section>
<!-- expressions -->
<section class="code-sample expressions">
<code class="font5vw">
<pre>
<comment>MyButton.html</comment>
<tag-open>button</tag-open>
<tag-open>h1</tag-open><expression>message</expression><tag-close>h1</tag-close>
<tag-open>p</tag-open>Limit: <expression>max</expression><tag-close>p</tag-close>
<tag-open>div</tag-open>By: <expression>expires</expression><tag-close>div</tag-close>
<tag-close>button</tag-close>
</pre>
</code>
<p>
Access attribute values inside your component using
<expression>expressions</expression>.
</p>
</section>
<!-- expressions -->
<section class="code-sample expressions">
<code class="font3vw">
<pre>
<comment>MyButton.html</comment>
<tag-open>button</tag-open>
<tag-open>h1</tag-open><expression>message <operator>??</operator> "Click me"</expression><tag-close>h1</tag-close>
<tag-open>p</tag-open>Limit: <expression>max <operator>*</operator> 2</expression><tag-close>p</tag-close>
<tag-open>div</tag-open>By: <expression>expires.Minutes.Ago</expression><tag-close>div</tag-close>
<tag-close>button</tag-close>
</pre>
</code>
<p>
Any expression is valid. Full statements are not valid (i.e. code
often separated by semicolons).
</p>
</section>
<!-- expressions -->
<section class="code-sample expressions">
<code class="font3vw">
<pre>
<comment>MyButton.html</comment>
<tag-open>button</tag-open>
<tag-open>h1</tag-open><expression>message <operator>??</operator> "Click me"</expression><tag-close>h1</tag-close>
<tag-open>p</tag-open>Limit: <expression>max <operator>*</operator> 2</expression><tag-close>p</tag-close>
<tag-open>div</tag-open>By: <expression>expires.Minutes.Ago</expression><tag-close>div</tag-close>
<tag-close>button</tag-close>
</pre>
</code>
<p>
<expression>Expressions</expression> serve as portals into new
languages beyond just JavaScript. More on that in the
<tag-open>script</tag-open> section below...
</p>
</section>
<header class="progress">
<h3><tag-open>if</tag-open></h3>
<h4>4 of 14</h4>
</header>
<!-- if -->
<section id="if" class="code-sample if">
<code class="font6vw">
<pre>
<tag-open>button</tag-open>
<tag-open>if <expression>count < 10</expression></tag-open>
Clicks: <expression>count</expression>
<tag-close>if</tag-close>
<tag-close>button</tag-close>
</pre>
</code>
<p>
<tag-open>if</tag-open> is a control-flow tag that can optionally
include its contents.
</p>
</section>
<!-- if -->
<section class="code-sample if">
<code class="font6vw">
<pre>
<tag-open>button</tag-open>
<tag-open>if <expression>count < 10</expression></tag-open>
Clicks: <expression>count</expression>
<tag-close>if</tag-close>
<tag-close>button</tag-close>
</pre>
</code>
<p>
Control-flow tags include, exclude, or repeat their contents, but the
parent tag (<tag-open>if</tag-open>) itself is never a part of the
DOM.
</p>
</section>
<!-- if -->
<section class="code-sample if">
<code class="font4vw">
<pre>
<tag-open>if <attr-name>first</attr-name>=<expression>user?.Name?.First</expression></tag-open>
<tag-open>h1</tag-open>Greetings <expression>first</expression>!<tag-close>h1</tag-close>
<tag-close>if</tag-close>
</pre>
</code>
<p>
The <tag-open>if</tag-open> tag can handle βif-letβ control flow. The
contents are only included if the assigned value is non-null.
</p>
</section>
<header class="progress">
<h3><tag-open>else</tag-open></h3>
<h4>5 of 14</h4>
</header>
<!-- else -->
<section id="else" class="code-sample else">
<code class="font4vw">
<pre>
<tag-open>if <attr-name>first</attr-name>=<expression>user?.Name?.First</expression></tag-open>
<tag-open>h1</tag-open>Greetings <expression>first</expression>!<tag-close>h1</tag-close>
<tag-close>if</tag-close>
<tag-open>else</tag-open>
<tag-open>h2</tag-open>Loading...<tag-close>h2</tag-close>
<tag-close>else</tag-close>
</pre>
</code>
<p>
Use <tag-open>else</tag-open> as a sibling tag to
<tag-open>if</tag-open>. No enclosing parent tag is necessary.
</p>
</section>
<header class="progress">
<h3><tag-open>else-if</tag-open></h3>
<h4>6 of 14</h4>
</header>
<!-- else-if -->
<section id="else-if" class="code-sample else-if">
<code class="font4vw">
<pre>
<tag-open>if <attr-name>first</attr-name>=<expression>user?.Name?.First</expression></tag-open>
<tag-open>h1</tag-open>Greetings <expression>first</expression>!<tag-close>h1</tag-close>
<tag-close>if</tag-close>
<tag-open>else-if <expression>isLoading</expression></tag-open>
<tag-open>h2</tag-open>Loading...<tag-close>h2</tag-close>
<tag-close>else-if</tag-close>
<tag-open>else</tag-open>
<tag-open>button</tag-open>Sign in<tag-close>button</tag-close>
<tag-close>else</tag-close>
</pre>
</code>
<p>
Optionally chain as many <tag-open>else-if</tag-open> tags as you
like.
</p>
</section>
<header class="progress">
<h3><tag-open>for</tag-open></h3>
<h4>7 of 14</h4>
</header>
<!-- for -->
<section id="for" class="code-sample for">
<code class="font4vw">
<pre>
<tag-open>ul</tag-open>
<tag-open>for <attr-name>article</attr-name>=<expression>articles</expression></tag-open>
<tag-open>li</tag-open>
<tag-open>a <attr-name>href</attr-name>=<expression>article.Url</expression></tag-open>
<expression>article.Title</expression>
<tag-close>a</tag-close>
<tag-close>li</tag-close>
<tag-close>for</tag-close>
<tag-close>ul</tag-close>
</pre>
</code>
<p>Repeat contents with <tag-open>for</tag-open>.</p>
</section>
<header class="progress">
<h3>Slots</h3>
<h4>8 of 14</h4>
</header>
<!-- slots -->
<section id="slots" class="code-sample slots">
<code class="font5vw">
<pre>
<tag-open>html</tag-open>
<tag-open>body</tag-open>
<tag-open>MyButton</tag-open>
<tag-open>h1 <attr-name>slot</attr-name>=<attr-value>"message"</attr-value></tag-open>
Click <tag-open>b</tag-open>me<tag-close>b</tag-close>
<tag-close>h1</tag-close>
<tag-close>MyButton</tag-close>
<tag-close>body</tag-close>
<tag-close>html</tag-close>
</pre>
</code>
<p>
Use slots to pass HTML as inputs into your component. Similar to
attributes, components access them with an expression, e.g.
<expression>message</expression>.
</p>
</section>
<header class="progress">
<h3>Routes</h3>
<h4>9 of 14</h4>
</header>
<!-- routes -->
<section id="routes" class="code-sample routes">
<code class="font3vw">
<pre>
π¦ my-project
ββ π blog
ββ π index.html <a>example.com/blog</a>
ββ π MyButton.html (private)
</pre
>
</code>
<p>
While every .html file is a component, only index.html files have
addressable routes.
</p>
</section>
<!-- routes -->
<section class="code-sample routes">
<code class="font3vw">
<pre>
π¦ my-project
ββ π blog
ββ π index.html <a>ex.com/blog</a>
ββ π MyButton.html (private)
ββ π <expression>slug</expression>
ββ π index.html <a>ex.com/blog/hi-there</a>
<a>ex.com/blog/one-more</a>
<a>ex.com/blog/last-one</a>
</pre
>
</code>
<p>
Use the <expression> </expression> escape sequence in directory names
to define dynamic routing.
</p>
</section>
<header class="progress">
<h3><tag-open>state</tag-open></h3>
<h4>10 of 14</h4>
</header>
<!-- state -->
<section id="state" class="code-sample state">
<code class="font4vw">
<pre>
<tag-self-close>state <attr-name>score</attr-name>=<attr-unquoted>0</attr-unquoted> </tag-self-close>
<tag-self-close>MyButton <attr-name>count</attr-name>=<expression>score</expression> </tag-self-close>
<tag-open>h1</tag-open>The score is <expression>score</expression><tag-close>h1</tag-close>
</pre>
</code>
<p>
Use <tag-open>state</tag-open> for values that change.
<tag-open>state</tag-open> can be shared with and changed by other
components.
</p>
</section>
<!-- state -->
<section class="code-sample state">
<code class="font5vw">
<pre>
<tag-self-close>state <attr-name>name</attr-name>=<attr-value>"World"</attr-value> </tag-self-close>
<tag-self-close>input <attr-name>value</attr-name>=<expression>name</expression> </tag-self-close>
<tag-open>h1</tag-open>Hello <expression>name</expression>!<tag-close>h1</tag-close>
</pre>
</code>
<p>
When <tag-open>state</tag-open> is assigned to an attribute, any
changes to the attribute's value also changes the
<tag-open>state</tag-open>. Here, every keypress will update the
<tag-open>h1</tag-open> tag.
</p>
</section>
<header class="progress">
<h3><tag-open>style</tag-open></h3>
<h4>11 of 14</h4>
</header>
<!-- style -->
<section id="style" class="code-sample style">
<code class="font5vw">
<pre>
<comment>MyButton.html</comment>
<tag-open>style</tag-open>
<func>button</func> { <attr-name>color:</attr-name> <attr-value>red</attr-value>; }
<tag-close>style</tag-close>
<tag-open>button</tag-open>
Click me
<tag-close>button</tag-close>
</pre>
</code>
<p>
<tag-open>style</tag-open> tags inside a component will have its CSS
scoped to only that component.
</p>
</section>
<header class="progress">
<h3><tag-open>script</tag-open></h3>
<h4>12 of 14</h4>
</header>
<!-- script -->
<section id="script" class="code-sample script">
<code class="font4vw">
<pre>
<comment>MyButton.html</comment>
<tag-open>script <attr-name>language</attr-name>=<span class="accent">"ANY-LANGUAGE"</span></tag-open>
<operator>func</operator> <func>handleClick</func>(e):
<func>print</func>(<attr-value>"Button was clicked."</attr-value>);
<tag-close>script</tag-close>
<tag-open>button <attr-name>onclick</attr-name>=<expression>handleClick</expression></tag-open>
Click me
<tag-close>button</tag-close>
</pre>
</code>
<p>
Use <tag-open>script</tag-open> to contain logic in any language. This
tag is never included in HTML output to the browser.
</p>
</section>
<!-- script -->
<section class="code-sample script">
<code class="font4vw">
<pre>
<comment>MyButton.html</comment>
<tag-self-close>state <attr-name>count</attr-name>=<attr-unquoted>0</attr-unquoted> </tag-self-close>
<tag-open>button <attr-name>onclick</attr-name>=<expression>e => count++</expression></tag-open>
Clicks: <expression>count</expression>
<tag-close>button</tag-close>
</pre>
</code>
<p>
If the guest language supports inline expressions, the
<tag-open>script</tag-open> tag can be optional.
</p>
</section>
<header class="progress">
<h3>Sibling Files</h3>
<h4>13 of 14</h4>
</header>
<!-- sibling files -->
<section id="sibling" class="code-sample sibling">
<code class="font6vw">
<pre>
π¦ my-project
ββ π MyButton.html
ββ π MyButton.css
ββ π€ MyButton.**
</pre
>
</code>
<p>
Instead of embedding <tag-open>style</tag-open> and
<tag-open>script</tag-open> tags, optionally use separate files. No
imports necessary, just use the same file name.
</p>
</section>
<header class="progress">
<h3>HTTP/X</h3>
<h4>14 of 14</h4>
</header>
<!-- http/x -->
<section id="httpx" class="code-sample httpx">
<code class="font3vw">
<pre>
<func>HTTP:</func>
browser ------- GET -------> server
browser <------ HTML ------- server
<span class="accent">HTTP/X:</span>
browser ----- DOM EVENT ---> server or wasm
browser <--- DOM CHANGES --- server or wasm
</pre>
</code>
<p style="font-size: 12pt">
HTTP/X represents a collection of HTTP-based protocols designed for
use cases where state and logic live on the server or in WASM instead
of in the browser via JavaScript.
<br /><br />
Instead of requesting HTML with a GET, HTTP/X forwards browser events
to server-side (or WASM) event handlers which respond with
standardized instructions for manipulating the DOM. <br /><br />
Read more at
<a href="https://httpx.org">httpx.org</a>.
</p>
</section>
<header class="progress">
<h3><expression>ZeroScript</expression></h3>
<h4>Done!</h4>
</header>
<!-- what's next -->
<section id="more" class="code-sample more">
<code class="font6vw">
<pre></pre>
<div style="padding: 64px; font-size: 64pt; text-align: center">
π
</div>
</code>
<p>Now you know the ZeroScript syntax!</p>
<ul>
<li>
<p>
Full spec: <br />
<a href="https://github.com/schmylan/zeroscript"
>github.com/schmylan/zeroscript</a
>
</p>
</li>
<li>
<p>
Follow along: <br />
<a href="https://twitter.com/zeroscript_org">@zeroscript_org</a>
</p>
</li>
<li>
<p>
The origin story: <br />
<a href="https://rylan.io/tag/zero/"
>Distilling the Web to Zero</a
>
</p>
</li>
</ul>
</section>
<!-- what's next -->
<section id="get-started" class="code-sample get-started">
<p>Get started using your favorite language:</p>
<table>
<thead>
<tr>
<th>Language</th>
<th>Project</th>
</tr>
</thead>
<tr>
<td>C# / .NET</td>
<td>
<a href="https://github.com/xui/xero">github.com/xui/xero</a>
</td>
</tr>
<tr>
<td>Java / Kotlin</td>
<td>
<a href="mailto:[email protected]">introduce yourself π</a>
</td>
</tr>
<tr>
<td>Ruby</td>
<td>
<a href="mailto:[email protected]">introduce yourself π</a>
</td>
</tr>
<tr>
<td>Python</td>
<td>
<a href="mailto:[email protected]">introduce yourself π</a>
</td>
</tr>
<tr>
<td>Go</td>
<td>
<a href="mailto:[email protected]">introduce yourself π</a>
</td>
</tr>
<tr>
<td>Rust</td>
<td>
<a href="mailto:[email protected]">introduce yourself π</a>
</td>
</tr>
<tr>
<td>Swift</td>
<td>
<a href="mailto:[email protected]">introduce yourself π</a>
</td>
</tr>
<tr>
<td>Perl</td>
<td>
<a href="mailto:[email protected]">introduce yourself π</a>
</td>
</tr>
<tr>
<td>Other?</td>
<td>
<a href="mailto:[email protected]">introduce yourself π</a>
</td>
</tr>
</table>
</section>
<nav>
<div>
<menu>
<li><a href="#intro">Intro</a></li>
<li><a href="#learn">Learn</a></li>
<li>
<menu>
<li><a href="#components">Components</a></li>
<li><a href="#attributes">Attributes</a></li>
<li><a href="#expressions">{{ expressions }}</a></li>
<li><a href="#if"><if></a></li>
<li><a href="#else"><else></a></li>
<li><a href="#else-if"><else-if></a></li>
<li><a href="#for"><for></a></li>
<li><a href="#slots">Slots</a></li>
<li><a href="#routes">Routes</a></li>
<li><a href="#state"><state></a></li>
<li><a href="#style"><style></a></li>
<li><a href="#script"><script></a></li>
<li><a href="#sibling">Sibling Files</a></li>
<li><a href="#httpx">HTTP/X</a></li>
</menu>
</li>
<li><a href="#more">More Info</a></li>
<li><a href="#get-started">Get Started</a></li>
</menu>
</div>
</nav>
</main>
<footer></footer>
</body>
</html>