Public
HTTP (deprecated)
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Readme

Visualize sum of an entered arithmetic progression

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
/** @jsxImportSource npm:react **/
import { renderToString } from "npm:react-dom/server";
export default async function(req: Request): Promise<Response> {
return new Response(
renderToString(
<html>
<head>
<title>arithmetic series</title>
<style>{CSS}</style>
</head>
<body>
<h1>Coming soon</h1>
</body>
</html>,
),
{ headers: { "Content-Type": "text/html" } },
);
}
const CSS = `
body {
text-align: center;
font-family: cursive;
margin-top: 50px;
}
input {
font-size:30px;
font-family: cursive;
margin-top: 20px;
}
`;
gueejla-arithmeticseries.web.val.run
August 18, 2024