-
Notifications
You must be signed in to change notification settings - Fork 4
/
block.html
42 lines (36 loc) · 2.22 KB
/
block.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
41
42
<!DOCTYPE HTML>
<html>
<head>
<title>Blockchain</title>
<link rel="icon" href="./images/Fevicon/block.ico">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header">
<h1>Introduction to Blockchain</h1><br>
</header>
<!-- Main -->
<div id="main">
<!-- Content -->
<section id="content" class="main">
<img class="responsive" src="./images/bcIntro.jpg" alt="Blockchain Structure">
<h2>History of Blockchain</h2>
<ul>
<li>1991 : The research scientists Stuart Haber and W.Scott Stornetta presented a computationally practical solution for time stamping digital documents so that they could not be tampered.</li>
<li>1998 : The scientist, Nick Szabo works on "Bit Gold" decentalized digital currency</li>
<li>2004 : A computer scientist and cryptographic activist named Hal Finney introduced a system called Reusable Proof of Work(RPoW) for digital cash.It worked by obtaining a non-fungible or a non-exchangable handcash based proof of work token in return. He created an RSA signed token that further could be transferred from one person to another.</li>
<li>2008 : Satoshi Nakamoto, wrote a paper named "Bitcon :A Peer-To-Peer Electronic Cash System". He introduced the term chain of blocks and explained the concept of distributed blockchain.</li>
<li>2009 : Nakamoto implemented the first blockchain as per public ledger, for public transactions made using bitcoin.</li>
<li>2014 : Blockchain evolution is steady and promising. It has become a need in various fields.</li>
</ul>
<h2>Bitcoin</h2>
<p>Bitcoin is the first application of blockchain which was introduced by Satoshi Nakamoto in 2009. It is the first cryptocurrency in the world. It follows exact same structure as a typical blockchain of P2P shared network. It is a decentralized digital currency that can be transferred on the peer-to-peer bitcoin network.</p>
</section>
</div>
</body>
</html>