Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Lunareclipse7110 authored Aug 8, 2024
1 parent 713b562 commit 2f008bc
Show file tree
Hide file tree
Showing 4 changed files with 288 additions and 0 deletions.
49 changes: 49 additions & 0 deletions q1-a1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<!--Q1 write Html code to display your personal details.
Q2 modify above using text formatting( fonts, textsize, alignment)-->

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Details</title>
<style>
body{
background-color: antiquewhite;
}
</style>
</head>
<body>

<header>
<center><u style="color: rgb(217, 30, 30);"><h1 style="color: rgb(217, 30, 30);">PERSONAL DETAILS</h1></u></center>
</header>
<div>
<i><p>This page contains my personal details, as follows:</p></i>
<ul>
<li>Name-<strong>Lavanya Singh</strong></li>
<li>USN-<b>1MS23CY037</b></li>
<li>Course-<b>CSE(Cyber Security)</b></li>
<li>Section-<b>H</b></li>
<li>Birthday-<b>25 June 2005</b></li>
<li>Age-<b>19</b></li>
<li>Height-<b>5'9''</b></li>
<li>Blood grp-<b>B+</b></li>
<li>Hometown-<b>Pune</b></li>
<li>Hobbies- Reading pyschological thrillers & Russian Literature,<br>
Cycling ,Watching true-crime docs, Listening to music, </li>
</ul><hr>

</div>
<div>
<p>Links to other Assignments:</p>
<a href=".\q3-a1.html">Q3-Write html code to display the list of courses of 1st sem (ordered & unordered)</a><br>
<a href=".\q4-a1.html">Q4-Write html code to generate marks details of 1st sem in Table format</a><br>
<a href=".\q5-a1.html">Q5-Create your personal Webpage(Resume)</a><br>



</div>

</body>
</html>
50 changes: 50 additions & 0 deletions q3-a1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<!--Q3 Write html code to display the list of courses of 1st sem (ordered & unordered)-->

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Courses Lists</title>
<style>
body{
background-color: antiquewhite;
}
</style>
</head>
<body>
<u style="color: rgb(217, 30, 30);"><h2 style="color: rgb(217, 30, 30);">Unordered List</h2></u>
<div>
<ul>
<li>Advanced Calculus</li>
<li>Engineering Physics</li>
<li>Communicative English</li>
<li>Health</li>
<li>Kannada Kali</li>
<li>Engineering Physics Laboratory</li>
<li>Intro to Civil Engineering</li>
<li>Python Programming</li>
<li>Programming in C</li>
</ul>
</div>
<hr>
<u style="color: rgb(217, 30, 30);"><h2 style="color: rgb(217, 30, 30);">Ordered List</h2></u>
<div>
<ol>
<li>Advanced Calculus</li>
<li>Engineering Physics</li>
<li>Communicative English</li>
<li>Health</li>
<li>Kannada Kali</li>
<li>Engineering Physics Laboratory</li>
<li>Intro to Civil Engineering</li>
<li>Python Programming</li>
<li>Programming in C</li>
</ol>
</div>
<hr>



</body>
</html>
68 changes: 68 additions & 0 deletions q4-a1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<!--Q4 Write html code to generate marks details of 1st sem in Table format-->

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Grade table</title>
<style>
body{
background-color: antiquewhite;
}
table,th,td{
border:1px solid black;
border-collapse: collapse;
}
</style>
</head>
<body>
<div>
<u style="color: rgb(217, 30, 30);"><h2 style="color: rgb(217, 30, 30);">Courses and Grades of Semester</h2></u>
<table>
<tr>
<th>Courses</th>
<th>Grade</th>
</tr>
<tr>
<td>Avanced Calculus & Modular Arithmetic</td>
<td>O</td>
</tr>
<tr>
<td>Engineering Physics</td>
<td>A+</td>
</tr>
<tr>
<td>Programming in C</td>
<td>O</td>
</tr>
<tr>
<td>Python Programming</td>
<td>A+</td>
</tr>
<tr>
<td>Intoduction to Civil Engineering</td>
<td>A</td>
</tr>
<tr>
<td>A Scientific approach to Health</td>
<td>O</td>
</tr>
<tr>
<td>Kannada Kali</td>
<td>A+</td>
</tr>
<tr>
<td>Communicative English</td>
<td>O</td>
</tr>
<tr>
<td>Engineering Physics Laboratory</td>
<td>O</td>
</tr>

</table>

</div>
</body>
</html>
121 changes: 121 additions & 0 deletions q5-a1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
<!--Q5 Create your personal Webpage(Resume)-->

<!DOCTYPE html>
<html lang="en">
<head>
<style>
table,th,td{
border:0.5px solid rgb(213, 30, 30);
width: 500px; height:50px ;
}
body{
background-color: antiquewhite;
}
</style>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume</title>
</head>
<body>
<header>
<center>
<u style="color: rgb(217, 30, 30);"><h1 style="color: rgb(217, 30, 30);">RESUME</h1></u></center>
</header>
<div>
<h4 style="margin-left: 6%;">Lavanya Singh<br>
<a href="[email protected]">[email protected]</a>
</h4>
</div><hr>
<div>
<ol>
<li>
<h2 style="color: rgb(217, 30, 30);">Objective</h2>
<article style="text-align: justify;">Current Undergraduate pursuing a degree in CSE(Cyber Security) and a strong foundation in networking and programming principles, including ethics of cybersecurity and risk management. Seeking an entry-level position to leverage my skills and knowledge in a dynamic cybersecrurity environment.</article>
</li>
<hr>
<li>
<div>
<h2 style="color: rgb(217, 30, 30);">Education</h2>
<table>
<tr>
<th>Education level</th>
<th>Organisation</th>
<th>Marks secured</th>
<th>Year of passing</th>
</tr>
<tr>
<td>Bachelor's in Computer Science & Engineering(Cyber Security)</td>
<td>Ramaish Institue Of Technology</td>
<td>SGPA-9.35</td>
<td>2027</td>
</tr>
<tr>
<td>XII-CBSE</td>
<td>Kendriya Vidyalaya Hebbal, Bengaluru</td>
<td>92.6%</td>
<td>2023</td>
</tr>
<tr>
<td>XII-CBSE</td>
<td>Kendriya Vidyalaya Mt.Abu, Rajasthan</td>
<td>94.6%</td>
<td>2021</td>
</tr>
</table><br>
</div>
</li><hr>
<li>
<div>
<h2 style="color: rgb(217, 30, 30);">Skills</h2>
<article>a.Knowledge of Programming language like: </article>
<ul>
<li>Python</li>
<li>C, C++</li>
<li>HTML, CSS</li>
<li>Javascript</li>
<li>Advanced SQL</li>
</ul>
<article>b.Soft Skills:</article>
<ul>
<li>Problem solving</li>
<li>Analytical thinking</li>
<li>Attention to detail</li>
<li>Efficient teamwork and collaboration</li>
<li>Interpersonal communication skills</li>
</ul>
</div>
</li><hr>

<li>
<div>
<h2 style="color: rgb(217, 30, 30);">Personal Details</h2>
<ul>
<li>Name-<strong>Lavanya Singh</strong></li>
<li>USN-<b>1MS23CY037</b></li>
<li>Course-<b>CSE(Cyber Security)</b></li>
<li>Section-<b>H</b></li>
<li>Birthday-<b>25 June 2005</b></li>
<li>Age-<b>19</b></li>
<li>Height-<b>5'9''</b></li>
<li>Blood grp-<b>B+</b></li>
<li>Hometown-<b>Pune</b></li>
<li>Hobbies- Reading pyschological thrillers & Russian Literature,<br>
Cycling ,Watching true-crime docs, Listening to music, </li>
</ul>
</div><hr>
</li>
<li>
<h2 style="color: rgb(217, 30, 30);">Achievements</h2>
<ul>
<li>Authored a paper in ICEMTEC, 2024 on "Assessing the application of Big Data and the United Nations Sustainable Development Goals: Challenges & Opportunities." </li>
<li>International English Olympiad-Gold</li>
<li>State Level Basketball-Gold </li>
</ul>
</li><hr>
<li>
<h2 style="color: rgb(217, 30, 30);">Achievements</h2>
<p><i>Available on request.</i></p>
</li><hr>
</ol>
</div>

0 comments on commit 2f008bc

Please sign in to comment.