-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (100 loc) · 4.07 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Jishnu G Varier</title>
<link rel="stylesheet" href="style.css">
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
</head>
<body>
<nav id="navbar">
<div class="name_container"><h4>Jishnu G Varier</h4></div>
<div>
<ul class="navlinks">
<li>Home</li>
<li>About</li>
<li>Skill</li>
<li>Contact</li>
</ul>
</div>
</nav>
<main>
<!-- This is the beginning of the home section -->
<section id="home">
<div class="home_left">
<div class="home_hello">Hello I'm Jishnu G Varier,</div>
<div class="web_designer">Web<br>Designer</div>
<div class="resume"><a>Resume</a></div>
</div>
<div class="home_right" ><img class="profile" width="500px" src="IMG_20210728_164044.jpg" alt="jishnu"></div>
</section>
<!-- This is the end of the home section -->
<!-- about section starts here -->
<section id="about">
<div>
<h2 class="brown_head">About</h2>
<div class="about_para">
<p>Currently pursuing BTech in Computer Science(Artificial Intelligence) at Muthoot Institute of Technology and Science</p>
</div>
</div>
<div class="about_exp">
<ul>
<li><b>2021-2025</b><br>BTech in Computer Science(Artificial Intelligence) at Muthoot Institute of Technology and Science
</li>
<li><b>2019-2021</b><br>11th & 12th(Stream PCMB) at Govt.V.M.C.H.S.S, Wandoor, Malappuram.
</li>
<li><b>2018-2019</b><br>10th at Unity H.S.S, Wandoor, Malappuram.
</li>
</ul>
</div>
</section>
<!-- about section ends here -->
<!-- skill section starts here -->
<section id="skills">
<div><h2 class="brown_head">Skills</h2>
<div class="about_para"><p>Primary level skills in html,css,Python,C,Java,SQL</p></div>
</div>
<div class="skill_container">
<div class="skill_item">
<img src="html.png" alt="html image" width="250px" height="250px">
<p>Markup Language</p>
</div>
<div class="skill_item">
<img src="vscode.png" alt="vscode image" width="250px" height="250px">
<p>Markup Language</p>
</div>
<div class="skill_item">
<img src="css.png" alt="css image" width="250px" height="250px">
<p>Markup Language</p>
</div>
<div class="skill_item">
<img src="github.png" alt="github image" width="250px" height="250px">
<p>Markup Language</p>
</div>
</div>
</section>
<!-- skills section ends here -->
<!-- contact section starts here -->
<section id="contact">
<h2 class="brown_head">Contact </h2>
<div class="contact_container">
<div class="image">
<img src="IMG_20210728_164044.jpg" alt="jishnu" width="200px">
</div>
<div class="contents">
<p>
You can contact me any time.Very happy to connect with you.
</p>
<p class="email">[email protected]</p>
<p>www.linkedin.com/in/jishnu-g-varier-b3513a227</p>
<p>https://github.com/JishnuGVarier</p>
</div>
</div>
</section>
<!-- contact section ends here -->
</main>
</body>
</html>