File size: 2,610 Bytes
e9db8f4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Website URL Index</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
        }
        header {
            background-color: #333;
            color: #fff;
            padding: 20px;
            text-align: center;
        }
        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        ul {
            list-style: none;
            padding: 0;
        }
        li {
            margin: 10px 0;
        }
        a {
            text-decoration: none;
            color: #007BFF;
            font-size: 18px;
        }
        a:hover {
            text-decoration: underline;
        }
        footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 10px;
            position: fixed;
            width: 100%;
            bottom: 0;
        }
    </style>
</head>
<body>

<header>
    <h1>Website URL Index Lister</h1>
    <p>A simple index of all your website links</p>
</header>

<div class="container">
    <h2>My Website Links</h2>
    <ul id="url-list"></ul>
</div>

<footer>
    <p>&copy; 2025 Your Name. All Rights Reserved.</p>
</footer>

<script>
    // Add your URLs here
    const urls = [
        { name: "Example Website 1", url: "https://abeea-invite.static.hf.space/index.html" },
        { name: "Example Website 2", url: "https://cometwaley.great-site.net/?i=1" },
        { name: "Example Website 3", url: "https://Abdfah-Blog.static.hf.space/index.html" },
        { name: "Example Website 4", url: "http://rahatblogs.page.gd/" },
        { name: "Example Website 5", url: "http://parse.gt.tc/" },
        { name: "Example Website 6", url: "https://www.example2.com" },
      // Add more links as needed
      
    ];

    // Function to display URLs
    const urlListElement = document.getElementById('url-list');
    
    urls.forEach(url => {
        const listItem = document.createElement('li');
        const link = document.createElement('a');
        link.href = url.url;
        link.target = "_blank";
        link.textContent = url.name;
        listItem.appendChild(link);
        urlListElement.appendChild(listItem);
    });
</script>

</body>
</html>