forked from RakshaAage/Ethereum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (112 loc) · 4.71 KB
/
index.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE HTML>
<html>
<head>
<title>Ethereum Blockchain</title>
<link rel="icon" href="./images/Fevicon/favicon.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" class="alt">
<p class="logo"><img src="images/Ethereum-Logo-PNG-Pic.png" alt="ethereum"/></p>
<h1 style="font-size: 69px;">ETHEREUM</h1><br>
<p style="font-size: 36px;">The technical side of ethereum's efficacy is 100% an engineering exercise - Vitalik Buterin<br />
</p>
</header>
<!-- Nav -->
<nav id="nav">
<ul>
<li><a href="#intro" class="active">Blockchain</a></li>
<li><a href="#first">Ethereum</a></li>
<li><a href="#second">Components of Ethereum</a></li>
<li><a href="#third">Solidity</a></li>
</ul>
</nav>
<!-- Main -->
<div id="main">
<!-- Introduction -->
<section id="intro" class="main">
<div class="spotlight">
<div class="content">
<header class="major">
<h2 style="padding-left: 250px;">Blockchain</h2>
</header>
<p>Blockchain is a distributed, decentalized, immutable ledger that stores the record of ownership of digital assests in a business network.
It is mechanism enabling the secure transfer of assets without any need of intermediary. Blockchain is a technology that facilitates the digital exchange of units of value.
<br> <br>
<a href="https://andersbrownworth.com/blockchain/block"><b> Blockchain Demo</b></a>
</p>
<ul class="actions">
<li><a href="block.html" class="button">Learn More</a></li>
</ul>
</div>
<span class="image"><img src="images/bc.jpg" alt="blockchain image" /></span>
</div>
</section>
<!-- First section-->
<section id="first" class="main special">
<header class="major">
<h2>Ethereum</h2>
<p>Ethereum is an open-source, decentralized blockchain with smart contract abilities. Ether(ETH) is it's native cryptocurrency. Ethereum is intended to be a general-purpose programmable blockchain. </p>
</header>
<ul class="actions special">
<li><a href="eth.html" class="button">Learn More</a></li>
</ul>
</section>
<!-- Second Section -->
<section id="second" class="main special">
<header class="major">
<h2>Components of Ethereum</h2>
</header>
<ul class="features">
<li>
<img src="./images/nodes.png" alt="nodes" class="c1"><br>
<h3>Ethereum Nodes</h3>
<p>Ethereum nodes are the peer-to-peer machines that links to form an ethereum network. </p>
</li>
<li>
<img src="./images/evm.jpg" alt="EVM" class="c1">
<h3>EVM</h3>
<p>The Ethereum Virtual Machine is the runtime environment for smart contracts in Ethereum.</p>
</li>
<li>
<img src="./images/dapp.jpg" alt="DApp" class="c1">
<h3>DApps</h3>
<p>DApp is a web application that is based on an open, decentralized, peer-to-peer infrastructure services in a broader sense.</p>
</li>
</ul>
<footer class="major">
<ul class="actions special">
<li><a href="ethcomponent.html" class="button">Learn More</a></li>
</ul>
</footer>
</section>
<!-- Third section-->
<section id="third" class="main special">
<header class="major">
<h2>Smart Contracts and Solidity</h2>
<p>Smart contracts are simply computer programs, a series of promises specified in a digital form, including protocols within which the parties carry out other promises.
These immutable computer programs are written in programming language called solidity. </p>
</header>
<footer class="major">
<ul class="actions special">
<li><a href="solidity.html" class="button primary">Learn More</a></li>
<li><a href="program.html" class="button primary">Get Started</a></li>
</ul>
</footer>
</section>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>