-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
39 lines (38 loc) · 1.72 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
<!DOCTYPE html>
<!--Description goes here.
@author J. Alvarez-->
<html>
<head>
<title>J. Alvarez's programming examples and drafts</title>
<meta charset="UTF-8" />
<link type="text/css" rel="stylesheet" href="style.css" />
</head>
<body>
<div id="header">
<h1>Welcome!</h1>
</div>
<div id="content">
<p> --- UNDER CONSTRUCTION --- </p>
<p>
This repository has some examples of programs implemented in different languages:
<ul>
<li><a href="https://github.com/jcalvarezj/practice/tree/master/C">C</a></li>
<li><a href="https://github.com/jcalvarezj/practice/tree/master/C%2B%2B">C++</a></li>
<li><a href="https://github.com/jcalvarezj/practice/tree/master/Dart%2BFlutter">Dart+Flutter</a></li>
<li><a href="https://github.com/jcalvarezj/practice/tree/master/Golang">Golang</a></li>
<li><a href="https://github.com/jcalvarezj/practice/tree/master/Web">HTML+CSS+JS</a></li>
<li><a href="https://github.com/jcalvarezj/practice/tree/master/Java">Java</a></li>
<li><a href="https://github.com/jcalvarezj/practice/tree/master/Kotlin">Kotlin</a></li>
<li><a href="https://github.com/jcalvarezj/practice/tree/master/nodeJS">NodeJS</a></li>
<li><a href="https://github.com/jcalvarezj/practice/tree/master/PHP">PHP</a></li>
<li><a href="https://github.com/jcalvarezj/practice/tree/master/Python2.7">Python 2.7</a></li>
<li><a href="https://github.com/jcalvarezj/practice/tree/master/Python3">Python 3</a></li>
</ul>
</p>
<p>These mostly include finished functional drafts from my learning process. Credits to the <a href="">Platzi</a> online educational platform for sharing so much knowledge.</p>
</div>
<div id="footer">
<p>© J. Alvarez</p>
</div>
</body>
</html>