-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebsites.html
40 lines (37 loc) · 1.64 KB
/
websites.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Qombo: Data Navigator - v1.12.5</title>
<link rel="stylesheet" href="old-style.css">
</head>
<body>
<header>
<h1>Qombo: Data Navigator - v1.12.5</h1>
</header>
<main>
<button id="version-switch" class="menu-button" onclick="window.location.href='index.html'">⇆</button>
<section id="menu-bar">
<div id="menu-list">
<p><span id="menu-websites"><a href="home.html">Home</a> | <a href="blocks.html">Blocks</a> | <a href="txs.html">Transactions</a> | <a href="trades.html">Trades</a> | <a href="accounts.html">Accounts</a> | <a href="apps.html">Apps</a> | Websites | <a href="polls.html">Polls</a> | <a href="assets.html">Assets</a> | <a href="mintership.html">Mintership</a> | <a href="extras.html">Extras</a></span></p>
</div>
</section>
<section id="blockchain-info">
<h2>Current Blockchain Information</h2>
<table id="info-table">
<tr><th>Current Block Height</th><td id="block-height"></td></tr>
</table>
</section>
<section id="website-search">
<h2>Website Information - <button id="search-button">Search</button><input type="text" id="search-input" placeholder="Enter search query"></h2>
<div id="website-details">
</div>
<h3>Search Results</h3>
<div id="website-results">
</div>
</section>
</main>
<script src="websites.js"></script>
</body>
</html>