lilferrit commited on
Commit
8033078
1 Parent(s): 7999fda

github pages mirror

Browse files
Files changed (2) hide show
  1. index.html +18 -0
  2. style/style.css +11 -0
index.html ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ <!doctype html>
3
+ <html>
4
+ <head>
5
+ <title>Larvae Counter</title>
6
+ <meta name="description" content="Mirror of Larvae Counter Web App">
7
+ <meta name="author" content="John Doe">
8
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
9
+ <link rel="stylesheet" href="style/style.css">
10
+ </head>
11
+ <body>
12
+ <iframe src="https://lilferrit-larvae-counter.hf.space">
13
+ You're browser doesn't support iframes, please visit
14
+ <a href="https://huggingface.co/spaces/lilferrit/larvae-counter">here</a>
15
+ in order to use the larvae counting app.
16
+ </iframe>
17
+ </body>
18
+ </html>
style/style.css ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ margin: 0;
3
+ }
4
+
5
+ iframe {
6
+ display: block;
7
+ background: #000;
8
+ border: none;
9
+ height: 100vh;
10
+ width: 100vw;
11
+ }