-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
49 lines (45 loc) · 2.15 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Payn's website</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--import normalize css-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<!--import fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap" rel="stylesheet">
<!--link the main css-->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header>
<nav class="nav-bar">
<a href="index.html">Home</a>
<a href="mailto:[email protected]">Contact</a>
</nav>
</header>
<main>
<section id="about">
<h1>About Me</h1>
<div class="about-text">
<p>
I'm Payn, a passionate and enthusiastic software developer who finds immense joy in diving deep into the realms of low-level programming, game development, and embedded systems.
</p>
<p>
With an unquenchable curiosity and a knack for problem-solving, I'm on a continuous journey to explore the intricacies of technology and collaborate on new ideas. Moreover, I have a special place in my heart for open source, as I firmly believe in the power of community-driven development and the freedom it brings to innovation.
</p>
</div>
<div class="about-technologies">
<h1>Technologies I use</h1>
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/linux/linux-original.svg"/>
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/docker/docker-original.svg"/>
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/c/c-original.svg"/>
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/cplusplus/cplusplus-original.svg"/>
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/lua/lua-original.svg"/>
</div>
</section>
</main>
</body>
</html>