-
Notifications
You must be signed in to change notification settings - Fork 0
/
course.html
135 lines (135 loc) · 5.78 KB
/
course.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bitcoin Engineering School</title>
<link rel="stylesheet" href="./styles/style.css">
</head>
<body>
<header>
<div class="hero">
<h1>Bitcoin Engineering School</h1>
<p >This is the Bitcoin Engineering School where you find all you need to become a Great Bitcoin Engineer & Developer</br>
If you are a Bitdev, Engineer or thinking of starting your journey in the Bitcoin Tech Industry, let's connect and share ressources.</br>
<a href="https://twitter/mehounme">Twitter</a></p>
</div>
<div class="nav">
<button><a href="index.html">Ressources</a></button>
<button><a href="course.html">Courses</a></button>
<button><a href="quiz.html">Bitdev Quiz</a></button>
</div>
</header>
<div class="container">
<h2>Courses</h2>
<section class="courses">
<article class="course">
<a href="https://learn.saylor.org/course/view.php?id=500">
<img src="images/bitcoinforeveryone.svg">
<h3>Course : Bitcoin for Developers</h3>
<p>by : Saylor Academy</p>
<p>Cost : Free</p>
</a>
</article>
<article class="course">
<a href="https://base58.info/classes/tx-deep-dive">
<img src="images/bitcoindeveloperbasics.png">
<h3>Course : Bitcoin Developer Basics</h3>
<p>by : Base58</p>
<p>Cost : $1000</p>
</a>
</article>
<article class="course">
<a href="https://github.com/chaincodelabs/bitcoin-curriculum">
<img src="images/bitcoincurriculum.png">
<h3>Course : Bitcoin Protocol Development Curriculum</h3>
<p>by : Chaincode Labs</p>
<p>Cost : Free</p>
</a>
</article>
<article class="course">
<a href="https://github.com/chaincodelabs/lightning-curriculum">
<img src="images/bitcoincurriculum.png">
<h3>Course : Lightning Protocol Development Curiculum</h3>
<p>by : Chaincode Labs</p>
<p>Cost : Free</p>
</a>
</article>
<article class="course">
<a href="https://planb.network/en/courses/cuboplus">
<img src="images/cuboplus.webp">
<h3>Course : Bitcoin Development Accelerator</h3>
<p>by : Cubo+ PlanB Network</p>
<p>Cost : Free</p>
</a>
</article>
<article class="course">
<a href="https://planb.network/en/courses/rgb">
<img src="images/introrgb.webp">
<h3>Course : Intro to RGB Development</h3>
<p>by : PlanB Network</p>
<p>Cost : Free</p>
</a>
</article>
<article class="course">
<a href="https://planb.network/en/courses/ln402">
<img src="images/devlnsdk.webp">
<h3>Course : Developping on Lightning with SDK</h3>
<p>by : PlanB Network</p>
<p>Cost : Free</p>
</a>
</article>
<article class="course">
<a href="https://www.summerofbitcoin.org/">
<img src="images/summerofbitcoin.svg">
<h3>Course : Summer of Bitcoin</h3>
<p>by : Summer of Bitcoin</p>
<p>Cost : Free</p>
</a>
</article>
<article class="course">
<a href="https://planb.network/en/courses/btc402">
<img src="https://planb.network/cdn/493a96b/courses/btc402/assets/thumbnail.webp">
<h3>Course : Tech School</h3>
<p>by : PlanB Network</p>
<p>Cost : $5300</p>
</a>
</article>
<article class="course">
<a href="https://btcdemy.thinkific.com/courses/intro-to-rust">
<img src="https://import.cdn.thinkific.com/962869/ab6Rm1oiTGORFI5qOKZf_bitcoin-crab.png">
<h3>Course : The Bitcoiner's Intro to Rust</h3>
<p>by : BTCdemy</p>
<p>Cost : Free</p>
</a>
</article>
<article class="course">
<a href="https://jede.dev">
<img src="https://import.cdn.thinkific.com/962869/ab6Rm1oiTGORFI5qOKZf_bitcoin-crab.png">
<h3>Course : Bitcoin Development</h3>
<p>by : Jede</p>
<p>Cost : Free</p>
</a>
</article>
</section>
<section id="contact" class="ressourcebox">
<h2>Contact</h2>
<p>Do you have any ressource that can help me ? Would you like to talk about the project ? Do not hesitate to contact</p>
<a href="https://github.com/AlphonseMehounme">Github</a>
<a href="https://twitter.com/mehounme">Twitter</a>
</section>
<section id="contact" class="ressourcebox">
<h2>Contact</h2>
<p>Do you have any ressource that can help me ? Would you like to talk about the project ? Do not hesitate to contact</p>
<a href="https://github.com/AlphonseMehounme">Github</a>
<a href="https://twitter.com/mehounme">Twitter</a>
</section>
</div>
<footer>
<h2>Bitcoin School Engineering</h2>
<p>We Keep Learning & Building...</p>
<p>Building with ♥ by @mehounme</p>
</footer>
</div>
</body>
</html>