-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathabout.html
More file actions
57 lines (55 loc) · 1.49 KB
/
about.html
File metadata and controls
57 lines (55 loc) · 1.49 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>About Runme Web</title>
<style>
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
line-height: 1.5;
color: #111827;
background: #ffffff;
}
main {
max-width: 760px;
margin: 0 auto;
padding: 48px 20px 64px;
}
h1 {
margin-top: 0;
line-height: 1.2;
}
</style>
</head>
<body>
<main>
<h1>About Runme Web</h1>
<p>
Runme Web is a browser-based notebook application for viewing, editing,
and running Runme notebooks. It provides an interface for working with
notebook cells, connecting to execution runners, and integrating with
services such as Google Drive for notebook storage.
</p>
<p>
Privacy Policy:
<a href="http://web.runme.dev/policies/privacypolicy.html">
http://web.runme.dev/policies/privacypolicy.html
</a>
</p>
<p>
Runme:
<a href="https://runme.dev/">https://runme.dev/</a>
</p>
<p>
GitHub:
<a href="https://github.com/runmedev/runme">https://github.com/runmedev/runme</a>
</p>
<p>
Web repository:
<a href="https://github.com/runmedev/web">https://github.com/runmedev/web</a>
</p>
</main>
</body>
</html>