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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
71 changes: 71 additions & 0 deletions Web Development/Task/PORTFOLIO/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<!DOCTYPE html>
<html lang="en">
<!-- divinectorweb.com -->
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Responsive Resume website html css</title>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="header">
<div class="img-area">
<img src="./assets/Ataul1.jpg.jpg" alt="profile picture">
</div>
<h1>Ataul Wahab</h1>
<h3>App Developer</h3>
</div>

<div class="main">
<div class="left">
<h2>Personal Information</h2>
<p><strong>Name:</strong> Ataul Wahab</p>
<p><strong>Age:</strong> 18</p>
<p><strong>Email:</strong>[email protected]</p>
<p><strong>Phone:</strong>7978446238</p>
<p><strong>linkedin:</strong>https://www.linkedin.com/in/ataul-wahab-29b568288</p>
<p><strong>GitHub:</strong>https://github.com/Ataulwahab</p>
<h2>Skills</h2>
<ul>
<li>JAVA</li>
<li>Kotlin</li>
<li>Data Structures and Algorithms in Java</li>
<li>C programming language</li>
</ul>
<h2>Education</h2>
<h3>Persuing B.Tech in Information Technology</h3>
<p>Veer Surendra Sai University Of techninology, 2023-2027</p> <br>
<h3>Completed Intermediate</h3>
<p>Cohen International School, 2021-2023</p>
</div>

<div class="right">
<h2>About Myself </h2>
<h3>And My Intrests</h3>

<ul>
<li>I am Ataul Wahab.
I am currently pursuing my Bachelor in Technology degree from Veer Surendra Sai University of Technology in Information Technology. My Tech Interest developed when I started learning Java in 2020. My Java Knowledge has guided me to opt for
App development as an domain.</li>

</ul> <br>
<h3>Experience</h3>
<p><strong>Position:</strong>Code editor and Content Head</p>
<p><strong>Task:</strong> GDSC solution challenge 2023</p>
<ul>
<li>Maintained a lawyer freelance website named "LegalSphere" using HTML, CSS, and JavaScript</li>
<li>Created content for each page of the website</li>
<li>Made a Railway ticket code using Java in 2021</li>
</ul>
</div>
</div>
</div>
<hr>



</body>
</html>
99 changes: 99 additions & 0 deletions Web Development/Task/PORTFOLIO/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Montserrat', sans-serif;
}
body {
background: #00b6c4;
}
.container {
background: #f5f5f5;
max-width: 800px;
margin: 60px auto;
height: 1250px;
padding: 20px;
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.header {
text-align: center;
}
.header h1 {
margin-bottom: 10px;
}
.header h3 {
text-transform: uppercase;
font-size: 15px;
font-weight: 500;
}
.img-area {
width: 200px;
height: 200px;
border-radius: 50%;
overflow: hidden;
margin: 25px auto;
border: 15px groove deepskyblue;
}
.img-area img {
width: 100%;
}
.main {
display: flex;
flex-wrap: wrap;
}
.left {
flex: 1;
padding: 30px;
}
.left p {
line-height: 2;
}
.left ul li {
line-height: 2;
}
h2 {
background: #00b6c4;
padding: 15px;
color: #fff;
margin: 30px 0;
font-size: 20px;
border-radius: 0 50px 50px 0;
}
.right {
flex: 1;
padding: 30px;
}
.right h3 {
margin-bottom: 15px;
}
.right p {
line-height: 2.9;
}
.right ul li {
line-height: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.container {
width: 95%;
height: auto;
}
h2 {
font-size: 18px;
}
}
@media screen and (max-width: 600px) {
.main {
flex-direction: column;
}
.left, .right {
flex: none;
width: 100%;
}
.container {
width: 95%;
height: auto;
}
h2 {
font-size: 15px;
}
}