66 lines
2.2 KiB
HTML
66 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Bitcoin Price Banner -->
|
|
<div id="btc-price-banner">This page is under construction</div>
|
|
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Wallets</title>
|
|
|
|
<!-- scripts -->
|
|
<script src="/scripts.js" defer></script>
|
|
|
|
</head>
|
|
<link rel="stylesheet" href="/assets/css/main.css">
|
|
<body>
|
|
<!-- Bitcoin Price Banner -->
|
|
<div id="btc-price-banner">This page is under SEVERE construction</div>
|
|
|
|
<div class="container">
|
|
<div class="logo-container">
|
|
<a href="/" class="prefetch">
|
|
<img src="/images/btcforplebs_logo.gif" alt="Home" class="header-logo">
|
|
</a>
|
|
</div>
|
|
<div id="top"></div>
|
|
<h1>Choosing A Wallet</h1>
|
|
<p>Choosing a Wallet is the most important part of securing your Bitcoin. Here are some tips to help you make an informed decision</p>
|
|
<!-- Dropdown Navigation -->
|
|
<div class="dropdown">
|
|
<select onchange="navigateToSection(this)">
|
|
<option value="">Select a Topic</option>
|
|
<option value="where to start">Where To Start</option>
|
|
</select>
|
|
</div>
|
|
|
|
<!-- Sections -->
|
|
<section id="where to start">
|
|
<h2>Where To Start with Wallets</h2>
|
|
<p>Selecting a wallet is a critical decision that can have a significant impact on your security and privacy. You can make as many </p>
|
|
</section>
|
|
|
|
<div id="footer"></div>
|
|
<div id="back-to-top">
|
|
<a href="#top" title="Back to Top">🔝</a>
|
|
</div>
|
|
<script src="/nostr-chat-widget.js"
|
|
data-nostr-pubkey="75462f4dece4fbde54a535cfa09eb0d329bda090a9c2f9ed6b5f9d1d2fb6c15b"
|
|
data-brand-name="Chat with BTCforPlebs"
|
|
data-color="#fdad01"
|
|
data-color-secondary="#222222">
|
|
</script>
|
|
|
|
<script>
|
|
// --- 2. Dropdown navigation ---------------------------------------------
|
|
window.navigateToSection = function (select) {
|
|
const sectionId = select.value;
|
|
if (sectionId) {
|
|
const section = document.getElementById(sectionId);
|
|
if (section) {
|
|
section.scrollIntoView({ behavior: 'smooth' });
|
|
}
|
|
}
|
|
};</script>
|
|
</body>
|
|
</html> |