projects.html (view raw)
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <title>Lonami's Projects</title>
5 <link rel="stylesheet" type="text/css" href="css/style.css">
6 <meta name="description" content="Official Lonami's website">
7 <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
8</head>
9<body>
10 <div class="menu">
11 <ul>
12 <li><a href="index">Welcome</a></li>
13 <li><a href="projects" class="selected">Projects</a></li>
14 <li><a href="contact">Contact</a></li>
15 <li><a href="about">About</a></li>
16 <li><a href="more-links">More Links</a></li>
17 </ul>
18 </div>
19 <div class="body">
20 <h1>Projects</h1>
21 <ul>
22 <li>
23 <a href="https://github.com/LonamiWebs/Telethon/" target="_blank">Telethon</a>:
24 Python implementation of the Telegram's API.
25 </li>
26 <li>
27 <a href="klooni" target="_blank">1010! Klooni</a>: libGDX simple puzzle
28 game based on the original <i>1010!</i>.
29 </li>
30 <li>
31 <a href="https://github.com/LonamiWebs/Stringlate/" target="_blank">Stringlate</a>:
32 Android application that makes it easy to translate other FOSS apps.
33 </li>
34 </ul>
35 <p>These are only my <i>Top 3</i> projects, the ones I consider to be
36 the most successful. If you're curious about what else I've done, feel
37 free to check out my
38 <a href="https://github.com/LonamiWebs/" target="_blank">GitHub</a>.</p>
39 </div>
40</body>
41</html>