-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.html
53 lines (47 loc) · 2.73 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Justin Johny Mathew</title>
<link rel="stylesheet" href="/assets/style.css" type="text/css">
<link href="https://fonts.googleapis.com/css?family=PT+Sans" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.rawgit.com/konpa/devicon/df6431e323547add1b4cf45992913f15286456d3/devicon.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
<script src="/assets/js/javscript.js" type="text/javascript"></script>
</head>
<body>
<div class="container">
<section class=" main-section center-all">
<img class="my-img" src="assets/images/me.jpg" alt="Justin Johny Mathew">
<h2 class="main-section-heading">Justin Johny Mathew</h2>
<p class="days">Disturbing the World Since <span id="age-days"></span> Years.</p>
</section>
<section class="social center-all">
<a class="social-icons" href="https://github.com/justinjohnymathew"target="_blank"><i class="fab fa-github"></i></a>
<a class="social-icons" href="https://www.facebook.com/justin.johny.758"target="_blank"><i class="fab fa-facebook-f"></i></a>
<a class="social-icons" href="https://www.instagram.com/just_in_johny_mathew/" target="_blank"><i class="fab fa-instagram"></i></a>
<a class="social-icons" href="https://www.linkedin.com/in/justinjohnymathew" target="_blank"><i class="fab fa-linkedin-in"></i></a>
<a class="social-icons" href="mailto:[email protected]" target="_blank"><i class="fas fa-at"></i></a>
<div class="about">
<p>A computer enthusiast. I have a keen Intrest in learning abut Python Machine Learning and Internet Of Things.I also love making electronic stuffs.Currently Pursuing My Bacheleors degree in Computer Science from <a href="http://web.sjcetpalai.ac.in">St.Joseph's College Of Enginerring And Technolegy Palai</a>. </p>
</div>
</section>
<section class="skills center-all">
<h2 class="skills-heading">My Skills</h2>
<div class="grid">
<--!enter the skill you wnt here-->
</div>
<div class="grid">
</div>
<div class="grid">
</div>
</section>
</div>
<script>
now = new Date().getFullYear();
document.getElementById("age-days").innerHTML=now-1999;
</script>
</body>
</html>