-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (84 loc) · 2.89 KB
/
Copy pathindex.html
File metadata and controls
89 lines (84 loc) · 2.89 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./assets/avatar.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfolio</title>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<div id="hero-container">
<div id="avatar-container">
<img id="avatar" src="./assets/avatar.png" alt="avatar" />
</div>
<div id="profile-container">
<h1 id="profile-name">Maximilian Kürschner</h1>
<h2 id="profile-username">Programonaut</h2>
</div>
<div id="scroll-down">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round" d="M19 9l-7 7-7-7" />
</svg>
</div>
</div>
<div class="content-section">
<h2 class="content-title">ABOUT</h2>
<div id="about-text">
<p>
<strong>Languages:</strong> <code>.c</code>, <code>.cs</code>,
<code>.py</code>, <code>.js</code>, <code>.dart</code>
</p>
<p>
<strong>Fields:</strong> <br />
🎮 Games <br />
☎️ Mobile <br />
💻 Full-Stack Web <br />
🏠 IoT and Automation <br />
🖥️ Other Software…
</p>
<p>
<strong>Projects:</strong> <br />
🏐
<a href="https://play.google.com/store/apps/details?id=com.Deved.Bralls">Bralls</a>
<br />
🎵 <a href="https://playlist.programonaut.com/">Artist to playlist</a>
</p>
<p>
Check out my
<a href="https://programonaut.com"><strong>Website</strong></a>! <br />
Contact me via <a href="mailto://mail@programonaut.com"><strong>mail@programonaut.com</strong></a> or
<a href="mailto://mail@maximilian-kuerschner.de"><strong>mail@maximilian-kuerschner.de</strong></a>
</p>
</div>
</div>
<div class="content-section">
<h2 class="content-title">PROJECTS</h2>
<div id="projects">
<div class="project-container">
<h3 class="project-title">Bralls</h3>
<p class="project-description">A little game.</p>
</div>
<div class="project-container">
<h3 class="project-title">Slide for Four</h3>
<p class="project-description">
A one vs. one slide puzzle. Created for the Flutter Puzzle Hack!
</p>
</div>
<div class="project-container">
<h3 class="project-title">Latex Template</h3>
<p class="project-description">A template for the thesis at the DHBW Mannheim.</p>
</div>
</div>
</div>
<div class="content-section">
<h2 class="content-title">CONTACT</h2>
<div id="contacts">
<div class="contact">Twitter</div>
<div class="contact">GitHub</div>
<div class="contact">Website</div>
<div class="contact">E-Mail</div>
</div>
</div>
</body>
</html>