kadirnar commited on
Commit
e3ff2bd
·
verified ·
1 Parent(s): a0ef37a

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +76 -17
index.html CHANGED
@@ -1,19 +1,78 @@
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
+ Evet, **`<iframe>` ile** istediğin heatmap sayfalarını doğrudan başka bir web sayfasına gömebilirsin.
2
+ Senin verdiğin kod, HTML dosyasında veya destekleyen bir platformda **çalışır** ve her bir heatmap’i ayrı ayrı gömülü olarak gösterir.
3
+
4
+ ---
5
+
6
+ ## Örnek: Tüm Heatmap’leri Yan Yana veya Alt Alta Göstermek
7
+
8
+ ```html
9
+ <div style="display: flex; flex-direction: column; gap: 20px;">
10
+ <iframe
11
+ src="https://cfahlgren1-model-release-heatmap.hf.space/kadirnar"
12
+ style="width: 100%; height: 300px;"
13
+ frameborder="0"
14
+ ></iframe>
15
+ <iframe
16
+ src="https://cfahlgren1-model-release-heatmap.hf.space/OpenSpeechHub"
17
+ style="width: 100%; height: 300px;"
18
+ frameborder="0"
19
+ ></iframe>
20
+ <iframe
21
+ src="https://cfahlgren1-model-release-heatmap.hf.space/Closed-TTS"
22
+ style="width: 100%; height: 300px;"
23
+ frameborder="0"
24
+ ></iframe>
25
+ <iframe
26
+ src="https://cfahlgren1-model-release-heatmap.hf.space/Vyvo"
27
+ style="width: 100%; height: 300px;"
28
+ frameborder="0"
29
+ ></iframe>
30
+ </div>
31
+ ```
32
+
33
+ > **Not:**
34
+ > - `class="w-full h-[300px]"` TailwindCSS içindir, klasik HTML’de `style="width: 100%; height: 300px;"` olarak kullanabilirsin.
35
+ > - Bu kodu **kendi web sitende**, **GitHub Pages’te** veya **Hugging Face Space’in HTML tabanlı bir arayüzünde** kullanabilirsin.
36
+
37
+ ---
38
+
39
+ ## Platform Desteği
40
+
41
+ | Platform | `<iframe>` Desteği | Açıklama |
42
+ |-------------------------|:------------------:|-----------------------------------------|
43
+ | Kendi HTML/Web Sitesi | ✔️ | Sorunsuz çalışır |
44
+ | GitHub README.md | ❌ | ÇALIŞMAZ (iframe desteklenmez) |
45
+ | Hugging Face Space (HTML/Gradio) | ⚠️ | HTML bloklarında çalışabilir, Gradio Markdown’da çalışmaz |
46
+ | Notion, Medium vb. | ⚠️ | Bazı platformlarda çalışır, bazılarında çalışmaz |
47
+
48
+ ---
49
+
50
+ ## **Sonuç**
51
+
52
+ - Kendi web sitende veya HTML destekli bir platformda verdiğin iframe kodunu kullanabilirsin.
53
+ - Eğer **GitHub README.md** veya Markdown tabanlı bir ortamdaysan, iframe çalışmaz.
54
+ - Hugging Face Space’te Streamlit veya saf HTML ile de gömebilirsin.
55
+
56
+ ---
57
+
58
+ ### **Ekstra: Sadece HTML Dosyası Örneği**
59
+
60
+ ```html
61
+ <!DOCTYPE html>
62
  <html>
63
+ <head>
64
+ <title>Hugging Face Heatmaps</title>
65
+ </head>
66
+ <body style="background: #111; color: #fff;">
67
+ <h1>My Hugging Face Heatmaps</h1>
68
+ <div style="display: flex; flex-direction: column; gap: 20px;">
69
+ <iframe src="https://cfahlgren1-model-release-heatmap.hf.space/kadirnar" style="width: 100%; height: 300px;" frameborder="0"></iframe>
70
+ <iframe src="https://cfahlgren1-model-release-heatmap.hf.space/OpenSpeechHub" style="width: 100%; height: 300px;" frameborder="0"></iframe>
71
+ <iframe src="https://cfahlgren1-model-release-heatmap.hf.space/Closed-TTS" style="width: 100%; height: 300px;" frameborder="0"></iframe>
72
+ <iframe src="https://cfahlgren1-model-release-heatmap.hf.space/Vyvo" style="width: 100%; height: 300px;" frameborder="0"></iframe>
73
+ </div>
74
+ </body>
 
 
 
 
75
  </html>
76
+ ```
77
+
78
+ ---