abeea commited on
Commit
e9db8f4
·
verified ·
1 Parent(s): f893761

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +98 -19
index.html CHANGED
@@ -1,19 +1,98 @@
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 lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Website URL Index</title>
7
+ <style>
8
+ body {
9
+ font-family: Arial, sans-serif;
10
+ background-color: #f4f4f4;
11
+ margin: 0;
12
+ padding: 0;
13
+ }
14
+ header {
15
+ background-color: #333;
16
+ color: #fff;
17
+ padding: 20px;
18
+ text-align: center;
19
+ }
20
+ .container {
21
+ max-width: 1200px;
22
+ margin: 20px auto;
23
+ padding: 20px;
24
+ background-color: #fff;
25
+ border-radius: 8px;
26
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
27
+ }
28
+ ul {
29
+ list-style: none;
30
+ padding: 0;
31
+ }
32
+ li {
33
+ margin: 10px 0;
34
+ }
35
+ a {
36
+ text-decoration: none;
37
+ color: #007BFF;
38
+ font-size: 18px;
39
+ }
40
+ a:hover {
41
+ text-decoration: underline;
42
+ }
43
+ footer {
44
+ background-color: #333;
45
+ color: #fff;
46
+ text-align: center;
47
+ padding: 10px;
48
+ position: fixed;
49
+ width: 100%;
50
+ bottom: 0;
51
+ }
52
+ </style>
53
+ </head>
54
+ <body>
55
+
56
+ <header>
57
+ <h1>Website URL Index Lister</h1>
58
+ <p>A simple index of all your website links</p>
59
+ </header>
60
+
61
+ <div class="container">
62
+ <h2>My Website Links</h2>
63
+ <ul id="url-list"></ul>
64
+ </div>
65
+
66
+ <footer>
67
+ <p>&copy; 2025 Your Name. All Rights Reserved.</p>
68
+ </footer>
69
+
70
+ <script>
71
+ // Add your URLs here
72
+ const urls = [
73
+ { name: "Example Website 1", url: "https://abeea-invite.static.hf.space/index.html" },
74
+ { name: "Example Website 2", url: "https://cometwaley.great-site.net/?i=1" },
75
+ { name: "Example Website 3", url: "https://Abdfah-Blog.static.hf.space/index.html" },
76
+ { name: "Example Website 4", url: "http://rahatblogs.page.gd/" },
77
+ { name: "Example Website 5", url: "http://parse.gt.tc/" },
78
+ { name: "Example Website 6", url: "https://www.example2.com" },
79
+ // Add more links as needed
80
+
81
+ ];
82
+
83
+ // Function to display URLs
84
+ const urlListElement = document.getElementById('url-list');
85
+
86
+ urls.forEach(url => {
87
+ const listItem = document.createElement('li');
88
+ const link = document.createElement('a');
89
+ link.href = url.url;
90
+ link.target = "_blank";
91
+ link.textContent = url.name;
92
+ listItem.appendChild(link);
93
+ urlListElement.appendChild(listItem);
94
+ });
95
+ </script>
96
+
97
+ </body>
98
+ </html>