awacke1 commited on
Commit
b0ec73c
1 Parent(s): eb87ddb

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +66 -17
index.html CHANGED
@@ -1,19 +1,68 @@
1
  <!DOCTYPE html>
2
  <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <!DOCTYPE html>
2
  <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>My VR App</title>
6
+ <script src="https://aframe.io/releases/1.2.0/aframe.min.js"></script>
7
+ </head>
8
+ <body>
9
+ <a-scene>
10
+ <!-- Create a sphere -->
11
+ <a-sphere position="-2 0 -5" radius="1" color="#ffffff" opacity="0.5"></a-sphere>
12
+
13
+ <!-- Create a cylinder -->
14
+ <a-cylinder position="0 0 -5" radius="0.5" height="2" color="#ffffff" opacity="0.5"></a-cylinder>
15
+
16
+ <!-- Create a thin rectangular shape -->
17
+ <a-box position="2 0 -5" width="1" height="0.1" depth="2" color="#ffffff" opacity="0.5"></a-box>
18
+
19
+ <!-- Create 3D text -->
20
+ <a-entity position="-1 1 -5" text="value: Hello, World!; font: fonts/helvetiker_regular.typeface.json; size: 0.5; color: #ffffff"></a-entity>
21
+
22
+ <!-- Add camera and cursor -->
23
+ <a-entity camera look-controls>
24
+ <a-cursor></a-cursor>
25
+ </a-entity>
26
+ </a-scene>
27
+
28
+ <iframe
29
+ src="https://awacke1-sentence2paragraph.hf.space"
30
+ frameborder="0"
31
+ width="850"
32
+ height="450"
33
+ ></iframe>
34
+
35
+ <iframe
36
+ src="https://awacke1-image-semantic-search.hf.space"
37
+ frameborder="0"
38
+ width="850"
39
+ height="450"
40
+ ></iframe>
41
+
42
+
43
+
44
+ <a-scene>
45
+ <a-entity camera position="0 1.6 0"></a-entity>
46
+ <a-plane position="0 0 0" rotation="-90 0 0" width="100" height="100" color="#CCC"></a-plane>
47
+
48
+ <a-curvedimage position="0 1 -5" rotation="0 180 0" scale="3 3 3"
49
+ src="https://i.imgur.com/guK6sz9.jpg" radius="10">
50
+ <a-image position="-2.5 0.5 0.5" src="https://i.imgur.com/QkfUK8d.png"
51
+ width="1" height="1" link="https://lukemerrett.com/building-c4-diagrams-in-mermaid/"></a-image>
52
+ <a-image position="-2.5 0.5 -0.5" src="https://i.imgur.com/QkfUK8d.png"
53
+ width="1" height="1" link="https://lukemerrett.com/using-mermaid-flowchart-syntax-in-notion/"></a-image>
54
+ <a-image position="-1.5 0.5 0.5" src="https://i.imgur.com/QkfUK8d.png"
55
+ width="1" height="1" link="https://lukemerrett.com/c4-diagrams-as-code-architectural-joy/"></a-image>
56
+ <a-image position="-1.5 0.5 -0.5" src="https://i.imgur.com/QkfUK8d.png"
57
+ width="1" height="1" link="https://huggingface.co/spaces/AI-Dashboards/CP.Matplotlib.NetworkX.Streamlit.PyVis.Graphviz"></a-image>
58
+ <a-image position="-0.5 0.5 0.5" src="https://i.imgur.com/QkfUK8d.png"
59
+ width="1" height="1" link="https://huggingface.co/spaces/awacke1/GraphViz-Demo"></a-image>
60
+ <a-image position="-0.5 0.5 -0.5" src="https://i.imgur.com/QkfUK8d.png"
61
+ width="1" height="1" link="https://huggingface.co/spaces/awacke1/AIZTH-03-09-2023"></
62
+
63
+
64
+
65
+ </a-scene>
66
+ </body>
67
+
68
+ </html>