Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
119 changes: 119 additions & 0 deletions Summer2018/Nitin Tanwar/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta-charset="utf-8">
<link rel="stylesheet" href="portfolio.css">
<title>portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<div class="box box1">
<div class="image-container">
<img class="center" src="https://i.imgur.com/wBcaYev.jpg"></img>
</div>
<p><p><p>
<div class="description">
<table>
<thead>
<th>Personal Details</th>

</thead>

<tbody>
<tr>
</tr>
<tr>
</tr>
<tr>
<td>Name:</td>
<td>NITIN TANWAR</td>
</tr>
<tr>
<td>Age:</td>
<td>20</td>
</tr>
<tr>
<td>Date Of Birth:</td>
<td>24/01/1998</td>
</tr>
<tr>
<td>Email:</td>
<td>nitintanwar38@gmail.com</td>
</tr>
<tr>
<td>Contact:</td>
<td>9599797401</td>
</tr>
</tbody>
</table>
<div class="info">
<h3>Skills</h3>
<nav>
<ul >
<li>C</li>
<li>C++</li>
<li>JAVA</li>
<li>PYTHON</li>
<li>HTML</li>
<li>CSS</li>

</ul>
</nav>
</div>
<div class="info">
<h3>Education</h3>
<ul>
<li>
<strong>THE NORTHCAP UNIVERSITY</strong><em>(Sector-23,Gurugram,Haryana)</em>

<em>Btech-Computer Science Engineering</em>(2016-2020)
<p>
<strong>CGPA:8.14</strong>
</li>

<li>

<strong>MAMTA MODERN SCHOOL </strong><em>(Vikas Puri, New Delhi)</em>
<p>
<strong>CBSE:88%</strong>
</li>

</ul>

</div>
</div>
</div>
<div class="container1">
<div class="box box2">
<h2>About Me</h2>
<p>Welcome to my portfolio<br>I am a twenty year old budding web developer. Currently pursuing my Btech degree, I've worked a lot in and have a decent experience in programming languages like C/C++/python. This portfolio has been designed by me using simple HTML and scratch CSS as a part of practice. This portfolio includes all my important details like, academics, experience ,schooling, hobbies, interests, achievements ,etc.<br>Do feel free to contact/msg me.<br>ThankYou.</p>
<h2>Projects</h2>
<p>library management system using c and c++ which include a login page and function as issue book,re issue book,search book and delete book.
</p>
<p>shoe shop gui in python which include function as add,delete,update and search shoes details using tkinter package <p>
</div>
<div class="box box3">
<div class="info">
<h2>Hobbies</h2>
<ul>

<li>
<strong>Cricket</strong>
<em>I'm always ready to play cricket..</em>
</li>
<li>
<strong>TV Shows/Movies</strong>
<em>Watching TV Shows and Movies in free time as leisure..</em>
</li>
</ul>
</div>
</div>
</div>
</div>


</body>
</html>


103 changes: 103 additions & 0 deletions Summer2018/Nitin Tanwar/portfolio.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
.container{
display: flex;
flex-wrap: wrap;
max-width: 100%;
margin-left:auto;
margin-right: auto;

}
.box{
width: 100%;
}

.box h3,th,td{
padding-left: 10px;
color:white;
}
.box h2{
color:white;
padding-left: 10px;
}
.info{
color: white;
}

.container1{
display: flex;
flex-wrap: wrap;
width: 100%;
height: 700px;
}
.box1{
background-color: royalblue;
height: 700px;
}

.center {

width: 100%;
height: 100%;
border-radius: 30%;
border: 1px dashed black;
}
.image-container{
height: 10%;
padding-top: 10px;

}
.image-container >.center{
display: block;
margin-left:auto;
margin-right: auto;
width: 30%;

}
.box2{
background-color: dodgerblue;
height: 600px;
}
.box2 p{
color: white;
padding-left: 30px;
padding-right:30px;
}

.box3{
background-color:dodgerblue;
height: 300px;

}
@media screen and (min-width: 480px){
.box1{
width: 100%;
height:700px;
}
.container1{
width: 100%;
}
.box2{
width: 100%;
height:350px;
}
.box3{
width: 100%;
height:350px;
}
}

@media screen and (min-width: 600px) {
.box1{
width:35%;
height: 700px;
}
.container1{
width: 65%;
}
.box2{
height: 350px;
}
.box3{
height: 350px;
}

}