-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathall-apps.html
93 lines (82 loc) · 2.32 KB
/
all-apps.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="index">
<title>Logic Realm | Softwares</title>
<link rel="canonical" href="https://www.logicrealm.xyz/all-apps.html" />
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="script.js" defer></script>
<link rel="icon" type="image/x-icon" href="img/icon.ico" />
</head>
<body>
<header>
<div class="container">
<h1>Logic Realm</h1>
<div class="menu-toggle">
<input type="checkbox" />
<span></span>
<span></span>
<span></span>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a class="active" href="#">Softwares</a></li>
<li><a href="support/index.php">Support</a></li>
<li><a href="wish.html">Wish</a></li>
<li>
<a href="https://www.skillfolio.rf.gd/" target="_blank">About</a>
</li>
</ul>
</nav>
</div>
</header>
<main>
<section id="featured-products">
<h2>Our Softwares</h2>
<div class="product">
<a href="https://www.chatmeow.rf.gd/">
<img src="img/cm.png" alt="ChatMeow Icon" />
</a>
<h3>ChatMeow</h3>
</div>
<div class="product">
<a href="dvtube/index.html">
<img src="img/dvtube.png" alt="DVTube Icon" />
</a>
<h3>DV Tube</h3>
</div>
<div class="product">
<a href="hified/index.html">
<img src="img/hified.png" alt="HiFied Icon" />
</a>
<h3>HiFied</h3>
</div>
<div class="product">
<a href="sayl/index.html">
<img src="img/sayl.png" alt="SAYL Icon" />
</a>
<h3>SAYL</h3>
</div>
<div class="product">
<a href="asfa/index.html">
<img src="img/asfa.png" alt="Asfa Icon" />
</a>
<h3>ASFA</h3>
</div>
<div class="product">
<a href="jinil/index.html">
<img src="img/jinil.jpg" alt="JiniL Icon" style="border: 1px solid gray;" />
</a>
<h3>JiniL</h3>
</div>
<!-- More product items here -->
</section>
</main>
<footer>
<p>© 2023 Logic Realm. All rights reserved.</p>
</footer>
</body>
</html>