-
Notifications
You must be signed in to change notification settings - Fork 0
/
IntroToStellar.html
146 lines (125 loc) · 5.18 KB
/
IntroToStellar.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="tutorial.css">
<title>Introduction to Stellar</title>
</head>
<body>
<header id="main-header">
<nav id="navbar">
<h1><a href="index.html"> ← Back to Home</a></h1>
<ul>
<li class="nav-link"><a href="#introduction">What is Stellar?</a></li>
<li class="nav-link"><a href="#keyfeatures">Key Features of Stellar</a></li>
<li class="nav-link"><a href="#usecases">Use Cases</a></li>
<li class="nav-link"><a href="#reference">Reference</a></li>
</ul>
</nav>
</header>
<main id="main-doc">
<section class="logo">
<h1>Stellar Dev Guide</h1>
</section>
<section class="tutname">
<h1> Tutorial:- Introduction to Stellar</h1>
</section>
<section class="main-section" id="introduction">
<header>What is Stellar?</header>
<article class="main-article">
<p>Stellar is an open-source, decentralized protocol for digital currency to fiat currency transfers which allows cross-border transactions between any currencies. It aims to facilitate fast, low-cost, and secure transactions.</p>
</article>
</section>
<section class="main-section" id="keyfeatures">
<header>Key Features of Stellar:</header>
<article class="main-article">
<ul>
<li><strong>Transactions:</strong> Stellar can handle thousands of transactions per second with a confirmation time of 3-5 seconds.</li>
<li><strong>Low Fees:</strong> Stellar's transaction fees are very low, making it cost-effective for users.</li>
<li><strong>Decentralized:</strong> Stellar operates on a decentralized network, ensuring security and reliability.</li>
<li><strong>Interoperability:</strong> Stellar supports a wide range of assets and currencies, facilitating seamless cross-border payments.</li>
</ul>
</article>
</section>
<section class="main-section" id="usecases">
<header>Use Cases:</header>
<article class="main-article">
<ul>
<li><strong>Remittances:</strong> Sending money across borders quickly and at low cost.</li>
<li><strong>Tokenization:</strong> Creating digital representations of real-world assets.</li>
<li><strong>Micropayments:</strong> Facilitating small, frequent transactions economically.</li>
</ul>
</article>
</section>
<section class="main-section" id="reference">
<header>Reference</header>
<article class="main-article">
<ul>
<li>All the documentation in this page is made with the help of OpenAI's ChatGPT
</ul>
</article>
</section>
<footer class="footer">
<div class="footer__addr">
<h1 class="footer__logo">Steller Dev Guide</h1>
<h2>Contact</h2>
<address>
11aravipratapsingh@gmail.com<br>
</address>
<a class="footer__btn" href="https://github.com/ravixalgorithm/Stellar-Dev-Guide" target=”_blank” >Source Code</a>
</div>
<ul class="footer__nav">
<li class="nav__item">
<h2 class="nav__title">Challenge</h2>
<ul class="nav__ul">
<li>
<a href="https://dev.to/devteam/join-us-for-the-first-community-smart-contract-challenge-with-50000-in-prizes-41gl" target=”_blank”>Dev Challenge</a>
</li>
<li>
<a href="https://github.com/ravixalgorithm" target=”_blank”>GitHub</a>
</li>
<li>
<a href="https://dev.to/ravixalgorithm" target=”_blank”>DEV.to</a>
</li>
</ul>
</li>
<li class="nav__item nav__item--extra">
<h2 class="nav__title">Tech Socials</h2>
<ul class="nav__ul nav__ul--extra">
<li>
<a href="https://github.com/ravixalgorithm" target=”_blank”>GitHub</a>
</li>
<li>
<a href="https://www.linkedin.com/in/ravixalgorithm/" target=”_blank”>LinkedIn</a>
</li>
<li>
<a href="https://linktr.ee/ravixalgorithm" target=”_blank”>linkTree</a>
</li>
<li>
<a href="https://app.daily.dev/ravixalgorithm" target=”_blank”>Daily.Dev</a>
</li>
</ul>
</li>
<li class="nav__item">
<h2 class="nav__title">Social Media</h2>
<ul class="nav__ul">
<li>
<a href="https://www.instagram.com/ravixalgorithm" target=”_blank”>Instagram</a>
</li>
<li>
<a href="https://x.com/ravixalgorithm" target=”_blank”>X</a>
</li>
<li>
<a href="https://www.youtube.com/@ravixalgorithm" target=”_blank”>YouTube</a>
</li>
</ul>
</li>
</ul>
<div class="legal">
<p>© 2024 created for Dev Challenge</p>
</div>
</footer>
</main>
</body>
</html>