-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (72 loc) · 2.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Resume</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
h1 {
color: #333;
}
img {
max-width: 200px;
border-radius: 50%;
}
ul {
list-style-type: none;
padding-left: 0;
}
footer {
text-align: center;
margin-top: 30px;
color: #777;
}
</style>
</head>
<body>
<header>
<h1>Anandhu Biju</h1>
<img src="./photo.jpeg" alt="Profile Picture">
</header>
<section>
<h2>OBJECTIVE</h2>
<p>Looking for a opportunity where I can apply my theoretical knowledge in a practical setting further develop my coding skills, and gain hands-on experience in software development, leveraging my current understanding of programming languages while expanding my expertise in a professional environment.</p>
</section>
<section>
<h2>Education</h2>
<ul>
<li>Bachelor of Technology in Computer Science with specialization in AIML - Christ University, 2022-2026</li>
<li>11th-12th grade - Kendriye Vidyalaya Sangathan, 2020-2022</li>
</ul>
</section>
<section>
<h2>Work Experience</h2>
<p><strong>Fresher</strong>, No prior experience</p>
</section>
<section>
<h2>Skills</h2>
<ul>
<li>Python, Java</li>
<li>C Language,Sql</li>
<li>HTML5, CSS3</li>
</ul>
</section>
<section>
<h2>Certifications</h2>
<ul>
<li>SQL (Intermediate)-Hackerrank certification,2023</li>
<li>Introduction to Cybersecurity-Cisco Networking Academy,2023</li>
</ul>
</section>
<section>
<a href="hobbies.html">Hobbies and Contact details</a>
</section>
<footer>
© 2023 Anandhu Biju | All rights reserved
</footer>
</body>
</html>