-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout_me.html
More file actions
121 lines (105 loc) · 5.12 KB
/
about_me.html
File metadata and controls
121 lines (105 loc) · 5.12 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html>
<head>
<link href="CSS/style.css" rel="stylesheet" type="text/css">
<link href="CSS/about_me.css" rel="stylesheet" type="text/css">
<link href="CSS/side_nav.css" rel="stylesheet" type="text/css">
<meta charset="utf-8">
<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=Itim&display=swap"
rel="stylesheet">
<title>🧠 Nikrp - About Me</title>
</head>
<body>
<header>
<!-- Side Navigation -->
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn"
onclick="closeNav()">×</a>
<a href="index.html" class="page">
Home
</a>
<a href="about_me.html" class="page">
About Me *
</a>
<a href="coding.html" class="page">
Coding World
</a>
<a href="contact.html" class="page">
Contact Me
</a>
<a href="https://nikrp.blogspot.com"
target="_blank" class="page">
My Blog
</a>
</div>
<p id="nothing">
<span style="font-size:30px;cursor:pointer"
onclick="openNav()" class="side-bar">☰ Pages</span>
</p>
<!-- Side Navigation End -->
<h1 class="title">About Me</h1>
<hr>
</header>
<section>
<!-- Profile Picture & Link to Youtube Cannel-->
<center><h2>I'm A Kid</h2></center>
<div class="profile">
<img src="Images\profile.jpg" alt="Profile Pic"><br>
<a href="https://www.youtube.com/channel/UCtfhF4fqy4gDOnocsp3dWRg" target="_blank">Visit Me</a>
</div>
<hr>
<!--Things I'm Good At-->
<center><h2>Were You Wondering About Me?</h2></center>
<h2>Coding:</h2>
<ol class="about-list">
<li>HTML 🌟🌟🌟</li>
<li>CSS 🌟🌟🌟</li>
<li>Python 🌟🌟🌟🌟</li>
<li>JS ❌</li>
</ol>
<!--Just Stuff About Me-->
<h2>Things I Like:</h2>
<ol class="about-list">
<li>Coding</li>
<li>Video Games</li>
<li>Soccer</li>
<li>Candy</li>
</ol>
<h2>Things I Hate:</h2>
<ol class="about-list">
<li>Mushrooms</li>
<li>School (Only a Little)</li>
<li>Jackfruit (I Threw Up The Same Day I Ate One, Coincidence?)</li>
<li>Dark Chocolate</li>
<li>Any Sea Salt Candy</li>
<li>Many, Many More...</li>
</ol>
<hr>
<center><h2>How Coding Began</h2></center>
<p id="coding-start">
I started coding when I was 8 or 9. I started with python. It seemed really boring, so I stopped in like a month.
But when I was 10, I started again. Using a website called Codakid to write Java. It was really easy because the
instructors told us everything to do. But after a course, I still wouldn't know that much. It was really fun though,
it made me start coding again for a long time. I started doing python again and I started liking it when I made some
games with it and played them. I started to do some other courses after the year was up (it was pricey). My dad
downloaded a python book for me where I started to learn a lot of what I know now. Then I found
<a href="https://www.udemy.com/" target="_blank">Udemy</a>,
there happend to be a sale when I found it, so I got it for only $11.00 when it should have been $80.00 or something.
It might seem like a lot, but they have a lot of sales, so you can just wait for a sale and then get it if you're
interested in it. I got it during the New Years sale. Since then, I have made so many projects in python and I have
learned a lot of things. I have made games, quizzes, and more. You even learn some HTML & CSS during the
<a href="https://www.udemy.com/course/100-days-of-code/?src=sac&kw=100+days+of+python" target="_blank">course</a>,
so that's useful. I already knew most of it, so it wasn't hard. Even if you don't know any HTML or CSS, the instructor
will go over it. You can see some of my projects in python in the "Coding World" page, which is found in the pages icon
in the top left corner of each page in this site.
</p>
</section>
<hr>
<footer>
<center><h2>© Nikhil Pellakuru</h2></center>
</footer>
<script src="script.js"></script>
</body>
</html>