public folder
This commit is contained in:
52
public/learn-bitcoin/nodes.html
Normal file
52
public/learn-bitcoin/nodes.html
Normal file
@@ -0,0 +1,52 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<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="/styles.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="/index.html" 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>
|
||||
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user