Tide/index.html
gabriel johnson 85be878dd8 The Tide Files
added the main files for tide.
2025-04-27 12:31:51 -07:00

26 lines
789 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Tide</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="loader" class="loader">Loading Tide...</div>
<div class="container" id="content" style="display: none;">
<h1 class="title">Tide<span class="dot">.</span></h1>
<form id="searchForm">
<input type="text" id="urlInput" placeholder="Where do you want to go?" autocomplete="off">
<div class="options">
<label><input type="checkbox" id="blankMode"> Stealth (about:blank)</label>
</div>
<button type="submit">Surf 🌊</button>
</form>
</div>
<script src="script.js"></script>
</body>
</html>