-
Notifications
You must be signed in to change notification settings - Fork 0
/
apps.html
39 lines (36 loc) · 1.46 KB
/
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
<!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.11.11</title>
<link rel="stylesheet" href="old-style.css">
</head>
<body>
<header>
<h1>Qombo: Data Navigator - v1.11.11</h1>
</header>
<main>
<section id="menu-bar">
<div id="menu-list">
<p><span id="menu-apps"><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> | Apps | <a href="websites.html">Websites</a> | <a href="polls.html">Polls</a> | <a href="assets.html">Assets</a> | <a href="extra.html">Extra</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="app-search">
<h2>App Information - <button id="search-button">Search</button><input type="text" id="search-input" placeholder="Enter search query"></h2>
<div id="app-details">
</div>
<h3>Search Results</h3>
<div id="app-results">
</div>
</section>
</main>
<script src="apps.js"></script>
</body>
</html>