We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd64413 commit c0c97c1Copy full SHA for c0c97c1
2 files changed
README.md
@@ -1,2 +1,10 @@
1
# fastplotlib-neuro.github.io
2
Homepage for visualizations associated with fastplotlib for neuroscience paper
3
+
4
+For now, to serve locally until we deploy this as a public website:
5
6
+```bash
7
+python -m http.server 8000
8
+```
9
10
+Can then see rendered version of website at: http://localhost:8000
index.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <title>My Website</title>
+ <style>
+ body {
+ font-family: Arial, sans-serif;
+ text-align: center;
+ margin-top: 100px;
11
+ }
12
+ </style>
13
+</head>
14
+<body>
15
+ <h1>Hello, world!</h1>
16
+ <p>This is my first website.</p>
17
+</body>
18
+</html>
19
0 commit comments