-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
109 lines (106 loc) · 4.02 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kylar Sorensen's Portfolio - Home</title>
<meta
name="description"
content="This is the homepage of a website designed to display Kylar Sorensen's portfolio and highlight his skills and projects he has worked on."
/>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<header>
<div class="site-name-div">
<a href="./index.html" class="site-name">Kylar Sorensen's Portfolio</a>
</div>
<button id="hamBtn" type="button">
<span>☰</span>
<span>X</span>
</button>
<nav>
<ul id="primaryNav">
<li><a id="homepage" href="index.html">Home</a></li>
<li><a id="projects" href="projects.html">Projects</a></li>
<li>
<a id="work-experience" href="work-experience.html"
>Work Experience</a
>
</li>
<li><a id="education" href="education.html">Education</a></li>
<li><a id="resume" href="resume.html">Resume</a></li>
<li><a id="about" href="about.html">About</a></li>
</ul>
</nav>
</header>
<main>
<h1>About Me</h1>
<h2>Me in 30 Seconds</h2>
<p>
I am an online student at Brigham Young University - Idaho studying
Applied Technology. I will shortly be starting my last semester of
school, taking my final class, and will be graduating in December of
2023. I am looking for a job as a data scientist or the field of
databases in general and am excited to start my career.
<!-- Main Code -->
</p>
<h2>My Interests</h2>
<p>
In my free time, I find joy in a variety of activities that help me
maintain a well-rounded life. One of my greatest pleasures is spending
quality time with my wife. We often dedicate our weekends to visiting
our families and nurturing those important relationships.
</p>
<p>
I have a passion for learning and expanding my horizons. Reading and
playing video games are two ways I indulge in personal growth and enjoy
immersive storytelling. Additionally, my wife and I love outdoor
activities such as hiking, camping, and exploring nature, as they
provide us with a refreshing escape and an opportunity to stay active.
</p>
<p>
Traveling is another interest that deeply enriches my life. Exploring
different places and learning about diverse peoples and cultures
fascinates me. It broadens my perspective and allows me to appreciate
the beauty of our world.
</p>
<p>
Professionally, I find great satisfaction in working with databases, web
design, and data analysis. I am always eager to deepen my knowledge and
skills in these areas. Recently, I have embarked on an exciting journey
with my brother, collaborating on building an iPhone app using Swift.
Exploring new programming languages and tackling innovative projects
invigorate my passion for technology and continuous learning.
</p>
<h2 id="contact-info">Contact Info</h2>
<p>
<strong>Email:</strong>
<a href="mailto:kylar.sorensen@gmail.com">kylar.sorensen@gmail.com</a>
</p>
<p>
<strong>Phone:</strong> <a href="tel:+15415617270">(541) 561-7270</a>
</p>
<h2>Connect with Me</h2>
<ul>
<li>
<a href="https://www.linkedin.com/in/kylar-sorensen/" target="_blank"
>LinkedIn</a
>
</li>
<li>
<a href="https://www.facebook.com/kylar.sorensen" target="_blank"
>Facebook</a
>
</li>
</ul>
</main>
<footer>
<div>
© 2023 by Kylar Sorensen -
<a href="about.html#contact-info">Contact Info</a>
</div>
</footer>
<script src="js/script.js"></script>
</body>
</html>