Skip to content

Commit c0c97c1

Browse files
committed
basic test
1 parent bd64413 commit c0c97c1

2 files changed

Lines changed: 27 additions & 0 deletions

File tree

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
11
# fastplotlib-neuro.github.io
22
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

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>My Website</title>
6+
<style>
7+
body {
8+
font-family: Arial, sans-serif;
9+
text-align: center;
10+
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

Comments
 (0)