diff --git a/index.html b/index.html
new file mode 100644
index 0000000..cb885eb
--- /dev/null
+++ b/index.html
@@ -0,0 +1,25 @@
+
+
+
+ Loading Tide...
+
+
+
+
+
+
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..5fd7f88
--- /dev/null
+++ b/script.js
@@ -0,0 +1,32 @@
+window.onload = function() {
+ setTimeout(() => {
+ document.getElementById('loader').style.display = 'none';
+ document.getElementById('content').style.display = 'block';
+ }, 1500); // Loader for 1.5s
+ };
+
+ document.getElementById('searchForm').addEventListener('submit', function(e) {
+ e.preventDefault();
+ let url = document.getElementById('urlInput').value.trim();
+
+ if (!url.startsWith('http')) {
+ url = 'https://' + url;
+ }
+
+ if (document.getElementById('blankMode').checked) {
+ const newWindow = window.open();
+ if (newWindow) {
+ newWindow.document.write(`
+