Files
BTCforPlebs.com/public/learn-bitcoin/nodes.html
2025-10-10 08:23:56 -04:00

73 lines
2.8 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>Run Your Own Bitcoin Node</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>Bitcoin Nodes</h1>
<p>Learn about the inner workings of Bitcoin's peer-to-peer network of nodes. Dig deep into the technical details of the code and build your own node to participate in the network on a greater level than merely holding the asset. Help be PART of securing the bitcoin Network.</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 Node Running</h2>
<div class="video-container">
<video controls playsinline width="100%" height="auto" poster="/images/thumb.jpeg">
<source src="https://player.vimeo.com/progressive_redirect/playback/1032394528/rendition/1080p/file.mp4?loc=external&log_user=0&signature=ee9903d404061750be460862d009490c3f88d9073bde78c16a3df728e02aadb3" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<p>Node Running is how you verify the Bitcoin network. Running a node is a crucial part of securing the Bitcoin network.</p>
</section>
<div id="footer"></div>
<div id="back-to-top">
<a href="#top" title="Back to Top">🔝</a>
</div>
<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>
<script src="/nostr-chat-widget.js"
data-nostr-pubkey="75462f4dece4fbde54a535cfa09eb0d329bda090a9c2f9ed6b5f9d1d2fb6c15b"
data-brand-name="Chat with BTCforPlebs"
data-color="#fdad01"
data-color-secondary="#222222">
</script>
</body>
</html>