-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
90 lines (85 loc) · 4.63 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
87
88
89
90
<!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">
<title>Dandelion Jacobson - About</title>
<link rel="stylesheet" href="./index.css">
<link rel="stylesheet" href="./styles/about.css">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
</head>
<body>
<div class="container">
<div class="links">
<a class='link' href="./index.html">Home</a>
<a class='link' href="./about.html">About</a>
<a class='link' href="./skills.html">Skills</a>
<a class='link' href="./projects.html">Projects</a>
<a class='link' href="./blog_list.html">Blog</a>
<a class='link' href="./art.html">Art</a>
</div>
<div class="body_container">
<div class="sidebar_container">
<div class="sidebar_item sidebar_item-1">
<a href="mailto:[email protected]" target='_blank' rel="noopener noreferrer">
<img src="./data/social/Email-595b40b65ba036ed117d10ee.svg" alt="email">
</a>
</div>
<div class="sidebar_item sidebar_item-2">
<a href="https://github.com/morbidlyocheese" target='_blank' rel="noopener noreferrer">
<img src="./data/social/Github-595b40b75ba036ed117d609e.svg" alt="github">
</a>
</div>
<div class="sidebar_item sidebar_item-3">
<a href="https://www.linkedin.com/in/Dandelionjacobson/" target='_blank' rel="noopener noreferrer">
<img src="./data/social/Linkedin-595b40b75ba036ed117d708c.svg" alt="linkedin">
</a>
</div>
<div class="sidebar_item sidebar_item-4">
<a href="https://twitter.com/morbidlyocheese" target='_blank' rel="noopener noreferrer">
<img src="./data/social/Twitter-595b40b75ba036ed117d72ad.svg" alt="twitter">
</a>
</div>
<div class="sidebar_item sidebar_item-5">
<a class='resume' href="./Dandelion Jacobson Resume.pdf" download>
<img class='resume-icon' src="./data/social/resume-icon.png" alt="resume download">
</a>
</div>
</div>
<div class="about_container">
<div class="about_content">
<h1 class="body_title">About</h1>
<p class="body_content">Dandelion has always had a passion for creating things, whether it was writing, or drawing, they has always tried to find ways to express themself creatively. Programming is no different.<br><br>
As a child they always had curiousities about the inner workings of electronics and computers. What was once a curiousity,
eventually became a passion. Programming has been seen as a new means of creativity for them, but also pulling together
some of his other passions as well. they intends to work on game development as side projects.</p>
<a class='resume' href="./Dandelion Jacobson Resume.pdf" download>Download Resume</a>
</div>
<div class="about">
<div class="interets_container">
<h2 class="interests">Interests</h2>
<ul>
<li>Game Development: Godot, Love2D, Pygame, Kaboomjs, GM2, Unity</li>
<li>Art: Digital. Traditonal, 3D Modeling</li>
<li>Music: Pop, Rock/Metal, EDM, Rap, etc.</li>
<li>Gaming: PC(Mainly), Switch, PS5</li>
<li>Games: No Man's Sky, Minecraft, Fallout 76</li>
<li>Films: Mostly Horror, Scifi, Comedies</li>
</ul>
</div>
<div class="about-icon_container">
<img class='about-icon_img' src="./data/me.jpg" alt="me">
</div>
</div>
</div>
</div>
<div class="footer">
© Dandelion Jacobson. All rights reserved.
</div>
</div>
</body>
</html>