-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
86 lines (86 loc) · 3.35 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="The about page of DragonWF's website." />
<title>DragonWF | About</title>
<link rel="icon" href="img/dragon.jpg" />
<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=Inter:wght@400;500;600;700;800&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/styles.css" />
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
</head>
<body>
<header class="main-header">
<nav class="nav">
<nav class="nav">
<div class="list">
<div class="nav__item"><a href="index.html">Home</a></div>
<div class="nav__item"><a href="#">About</a></div>
<div class="nav__item"><a href="projects.html">Projects</a></div>
<div class="nav__item"><a href="skills.html">Skills</a></div>
<div class="nav__item"><a href="form.html">Form</a></div>
</div>
</nav>
</nav>
</header>
<section class="about">
<div class="about__box" data-aos="zoom-in">
<h2>About:</h2>
<p>
Hallo, I'm DragonWF. Just my username, I'm not really confident at
sharing my real name here but I'll be talking about stuff about myself
with some exceptions of course.
</p>
<p>
I'm a programmer who started programming back at 2019. That was when I
first learned about the Godot Engine and GDscript. I didn't really
code as much back then and my learning path was all over the place so
I pretty much didn't improve as much during that time.
</p>
<p>
Nowadays I'm taking it seriously and found some good learning paths on
where to start and what to do next and so far, I've actually made
quite a lot of progress. Right now at the time I'm typing this, I've
learned how to code in Python, JavaScript, HTML, and CSS.
</p>
<p>
I'm planning to take BSIT in college, Bachelor of Science in
Information Technology and that's also why I'm studying quite a lot in
my free time and have been mostly spending my time to improve on my
programming skills; So I can better prepare myself when I do get to
college.
</p>
<div id="about__image">
<picture>
<source type="image/webp" srcset="img/dragon.webp" />
<source type="image/jpeg" srcset="img/dragon.jpg" />
<img src="img/dragon.jpg" alt="" />
</picture>
</div>
</div>
</section>
<footer class="footer footer-index">
<p id="footer__copyright">
© DragonWF |
<a
href="https://github.com/DragunWF/dragonwf.netlify.app"
target="_blank"
class="text-link"
>Source</a
>
</p>
</footer>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>