This repository has been archived by the owner on Nov 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
106 lines (90 loc) · 5.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="About Noel Kocheril">
<meta name="keywords" content="Noel, Kocheril, Ryerson, Portfolio, Website, Beta, About">
<meta name="author" content="Noel Kocheril">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About NK</title>
<!--Icon Library for Social Media-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!--Bootstrapping Necessities-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!--My Scripts and CSS -->
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body class="container bg-1">
<!-- Navbar -->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="https://noelkocheril.github.io/index">Noel Kocheril</a>
</div> <!-- Navbar Header -->
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="https://noelkocheril.github.io/index" title="Home Page" alt="Home Page">Home</a></li>
<li class="active"><a href="https://noelkocheril.github.io/about" title="About Page" alt="About Page">About</a></li>
<li><a href="https://noelkocheril.github.io/contact" title="Contact Page" alt="Contact Page">Contact</a></li>
<li><a href="https://noelkocheril.github.io/courses" title="My Courses" alt="My Courses">Courses</a></li>
<li><a href="https://noelkocheril.github.io/work" title="Work Experience" alt="Work Exp">Work Exp</a></li>
</ul>
</div> <!-- Navbar Collapse -->
</div> <!-- Container -->
</nav>
<!--Main Body -->
<div class="container-fluid text-center bg-2" style="padding: 0">
<div class="container text-center row-1">
<div class="container-fluid text-center">
<h3>
Who am I?
</h3>
<img id="profile" src="https://NoelKocheril.Github.io/Profile2.jpg" class="img-circle img-responsive" alt="Noel Kocheril Profile Picture"/>
</br>
<h3>
I am a Coach for the Future Generation of Coders
</h3>
</div>
</div> <!-- Row 1 -->
<div class="container-fluid text-center row-2" style="padding-top: 0">
<h3>
What I do?
</h3>
<p class="Bio">
I am a Undergraduate Student at Ryerson University in the Computer Science Program, I currently work at Hatch Canada and Bulk Barn.
My current work at Hatch Canada as a Head Coach at the Prime and Alpha Program, I teach JavaScript and Python to Students on a weekly basis to
classes of 5-10 students per session. Some Examples of Projects done can be found here:
<a href="https://repl.it/@NoelKocheril" title="Repl.it" target="_blank" alt="https://repl.it/@NoelKocheril">https://repl.it/@NoelKocheril</a>. </br></br>
I have extra personal projects on
<a href="https://www.github.com/NoelKocheril" title="My Github" target="_blank" alt="Github.com/NoelKocheril">Github</a>,
where I keep daily coding projects and cryptography projects. I am personally into Cryptography and IT Security,
and I am continuing my education by perusing certifications in SSCP, CISSP, Security+ and CCENT/CCNA.
I primarily Code in Java, C++ and Python, but I am always willing to pick up and learn a new language;
Currently I am learning HTML5/CSS3, Bootstrap, PHP, and SQL and I am always looking to improve my understand of languages I already know. </br></br>
Other than coding I enjoy hiking, camping, rock climbing, bouldering, kayaking and being outdoors in general.
Other hobbies I enjoy include attending Anime Conventions, Game Development, and Gaming in general primarily
on the Nintendo Switch at the moment.
</p>
</div> <!-- Row 2 -->
</div> <!-- Main Body-->
<!--Footer -->
<footer class="container-fluid text-center bg-f">
<div class="social-media">
<a href="mailto:[email protected]" title="Email: [email protected]" class="fa fa-at" alt="Email me at [email protected]"></a>
<a href="https://www.github.com/NoelKocheril" title="My Github" target="_blank" class="fa fa-github" alt="Github.com/NoelKocheril"></a>
<a href="https://www.linkedin.com/in/Noel-Kocheril" title="My LinkedIn" target="_blank" class="fa fa-linkedin" alt="www.linkedin.com/in/Noel-Kocheril"></a>
</div>
<div class="bottom-bar">
Noel Kocheril © 2018 | <a href="https://noelkocheril.github.io/sitemap.xml" title="Website Sitemap" target="_blank" alt="Sitemap">Sitemap</a>
</div>
</footer>
</body>
</html>