-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (91 loc) · 3.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0,
maximum-scale=1.0, user-scalable=no"
/>
<title>Lijucay - Personal website</title>
<link rel="stylesheet" href="css/general_style.css" />
<link rel="stylesheet" href="css/header.css" />
<link rel="stylesheet" href="css/about_me.css" />
<link rel="stylesheet" href="css/work.css" />
<link rel="stylesheet" href="css/footer.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="icon" href="img/137904_T8tjU7ds.png" type="image/x-icon" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200"
/>
</head>
<body>
<header>
<div class="header_text">
<nav>
<input type="checkbox" id="toggle_button" />
<label for="toggle_button">
<span class="material-symbols-rounded">menu</span>
</label>
<ul>
<li><a href="#about_me_section">About me</a></li>
<li><a href="#my_work_section">My work</a></li>
<li><a href="#footer">Contact & social media</a></li>
</ul>
</nav>
<h1>Lijucay, <br /><span>Hobby Developer</span></h1>
<p class="subheading">Android Apps, Java, Kotlin</p>
</div>
</header>
<section class="headertosection1"></section>
<section id="about_me_section">
<div class="about_me_container">
<h2>About me</h2>
<p>
Hello there,<br />It is actually nice, that you are here!<br />I am
Lijucay (or Lijukay), a nineteen years old hobby developer from
Germany. I am currently learning a bunch of new things aside from my
stressful school life.<br />
I like to learn new things and that is actually also how this website
was created, by following a tutorial in order to learn things.<br />
Besides this website, I also made some Android applications. You can
check them out down below!
</p>
</div>
</section>
<section class="section1tosection2"></section>
<section id="my_work_section">
<h2>Android Appli­cations</h2>
<div class="flex_container">
<div class="card">
<h3>Qwotable</h3>
<p>An application filled with quotes and wisdom.</p>
<a href="https://github.com/Lijukay/Qwotable/releases/latest"
>GitHub</a
>
<a href="https://f-droid.org/de/packages/com.lijukay.quotesAltDesign/"
>FDroid</a
>
</div>
</div>
</section>
<section class="section2tofooter"></section>
<footer id="footer">
<ul class="social-icon">
<!--
<li class="social-icon-icon">
<a class="social-icon-link" href="">
<ion-icon name="logo-instagram"></ion-icon>
</a>
</li> -->
<li class="social-icon-icon">
<a class="social-icon-link" href="https://github.com/Lijucay">
<ion-icon name="logo-github"></ion-icon>
</a>
</li>
</ul>
</footer>
<script src="https://unpkg.com/ionicons@4.5.10-0/dist/ionicons.js"></script>
</body>
</html>