-
Notifications
You must be signed in to change notification settings - Fork 0
/
AboutMe.html
93 lines (93 loc) · 3.79 KB
/
AboutMe.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
<!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">
<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=Josefin+Sans:wght@300;400;500&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/cd385a218c.js" crossorigin="anonymous"></script>
<link href="./SCSS/CommonStyleSheet.css" rel="StyleSheet">
<link href="./SCSS/AboutMe.css" rel="StyleSheet">
<title>Niko's About Me Page</title>
</head>
<body>
<div class="container">
<canvas width="100vw" height="100vh"></canvas>
<nav>
<ul>
<li><a href="./portfolio.html"><h1 class="header fancy inactive">PORTFOLIO</h1></a></li>
<li><h1 class="header fancy active">ABOUT ME</h1></li>
<li><a href="./index.html"><h1 class="header fancy inactive">HOME</h1></a></li>
</ul>
</nav>
<div class="aboutMeContainer">
<div class="monologue hoverGlow">
<img src="./Images/Photo of Me.jpg" alt="Photo of me">
<div>
<h2 class="fancy">ABOUT ME</h2>
<p>
Hey, I'm Niko Drossos! As a web development student, I'm constantly experimenting with new ideas and techniques to enhance my skills. I love working on projects that challenge me creatively and technically.
<br>
<br>
In my free time, I enjoy browsing the web for inspiration, analyzing websites for their design and functionality, and learning from other developers. I'm also a fan of attending web development events and meetups to stay up-to-date with the latest industry trends and technologies.
<br>
<br>
Ultimately, my goal is to use my skills in HTML, CSS, and JavaScript to create beautiful and functional websites that make a positive impact on people's lives.
</p>
</div>
</div>
<div class="insideAboutMe hoverGlow">
<h2 class="fancy">INFORMATION</h2>
<h3><span>Age</span><span>17</span></h3>
<h3><span>Birthday</span><span>09 / 02 / 05</span></h3>
<h3><span>Location</span><span>Goodyear AZ</span></h3>
<h3><span>Education</span><span>Home Schooled</span></h3>
<h3><span>Skills</span><span>HTML, CSS, JS</span></h3>
</div>
<div class="insideAboutMe hoverGlow">
<h2 class="fancy">HOBBIES</h2>
<ul>
<li>Chess</li>
<li>Bike Riding</li>
<li>Animals</li>
<li>Balisongs</li>
<li>Meditation</li>
<li>Coding</li>
<li>Ski Biking</li>
<li>Exercising</li>
<li>Learning</li>
<li>Gaming</li>
</ul>
</div>
</div>
</div>
<footer>
<div>
<h3 style="margin-top: 0px;">Contact</h3>
<p>
Phone: 719-726-6022<br>
Email: <a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
<div>
<ul id="icons">
<li><a href="https://www.youtube.com/@bethkavod4527"><i class="fa fa-youtube fa-3x"></i></a></li>
<li><a href="https://www.facebook.com/niko.drossos/" target="_blank"><i class="fa fa-facebook fa-3x"></i></a></li>
<li><a href="https://github.com/AvarageCodeEnjoyer"><i class="fa fa-github fa-3x"></i></a></li>
</ul>
<br>
<p>© 2024 Beth Kavod Company. All rights reserved.</p>
</div>
<div>
<ul>
<h3>Made using</h3>
<li><a href="https://fontawesome.com/" target="_blank">Font Awesome</a></li>
<li><a href="https://fonts.google.com/" target="_blank">Google Fonts</a></li>
<li><a href="https://sass-lang.com/" target="_blank">SCSS</a></li>
</ul>
</div>
</footer>
</body>
</html>