Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jagadamba_Mohapatra_2102030075 #88

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
Binary file not shown.
85 changes: 85 additions & 0 deletions task_webDev/Jagadamba_Mohapatra_2102030075/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
<!DOCTYPE html>
<html lang="en">
<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>Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#about">About Me</a></li>
<li><a href="#contact">Contact Me</a></li>

</ul>
</nav>
<section id="home">
<h1 class="heading">HI, I AM </h1>
<h1 class="heading">JAGADAMBA MOHAPATRA</h1>
<br>
<P> AND THIS IS MY RESUME </P>
</section>

<section id="Portfolio">
<h1 class="heading">Portfolio</h1>
<div class="gallery">
<img src="picture1.jpeg"alt="">
<img src="picture2.jpeg"alt="">
<img src="picture3.jpg"alt="">
<img src="picture4.jpg"alt="">
<img src="picture 5 repeat.jpg"alt="">
<img src="picture 6 repeat.jpg"alt="">
</div>
</section>

<section id="Education">
<h1 class="heading">Education</h1>
<div class="columns">
<div class="box">
<h2>Bachelors In Civil Engineering</h2>
<p> Lorem ipsum, dolor sit amet consectetur adipisicing elit. Eius, est iure voluptates cumque eligendi reprehenderit minima beatae similique qui nesciunt debitis possimus culpa inventore totam asperiores rem libero, id perspiciatis!</p>
</div>
<div class="box">
<h2>All India Senior School Certificate Examination</h2>
<p> Lorem ipsum, dolor sit amet consectetur adipisicing elit. Eius, est iure voluptates cumque eligendi reprehenderit minima beatae similique qui nesciunt debitis possimus culpa inventore totam asperiores rem libero, id perspiciatis!</p>
</div>
<div class="box">
<h2>All India Secondary School Examination</h2>
<p> Lorem ipsum, dolor sit amet consectetur adipisicing elit. Eius, est iure voluptates cumque eligendi reprehenderit minima beatae similique qui nesciunt debitis possimus culpa inventore totam asperiores rem libero, id perspiciatis!</p>
</div>
<div class="box">
<h2>Masters In Civil Engineering</h2>
<p> Lorem ipsum, dolor sit amet consectetur adipisicing elit. Eius, est iure voluptates cumque eligendi reprehenderit minima beatae similique qui nesciunt debitis possimus culpa inventore totam asperiores rem libero, id perspiciatis!</p>
</div>
</div>
</section>
<section id="about">
<h1 class="heading">About me</h1>
<div class="about">
<img src="my photo.jpg" alt="My Pic">
<div class="name">
<h2>I'm Jagadamba Mohapatra</h2>
<p>My goal is to secure a position where I can efficiently contribute my skills and abilities to the growth of organization and bulid my professional carrier.
</p>
</div>
</div>
</section>

<section id="Contact">
<h1 class="heading">Contact</h1>
<form action="" class="form">
<input type="text" name="name" class="input" placeholder="Enter Your Name">
<input type="email" name="" class="input" placeholder="Enter Your Email">
<textarea name="message" id="message" cols="70" rows="20" placeholder="Enter Your Message"></textarea>
<input type="submit" value="submit" id="submit">
</form>
</section>


</body>
</html>
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.
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
202 changes: 202 additions & 0 deletions task_webDev/Jagadamba_Mohapatra_2102030075/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,202 @@
*{
margin: 0 ;
padding: 0;
}
html{
scroll-behavior: smooth;
}

/* navbar */
.navbar{
display: flex;
justify-content: center;
height: 50px;
align-items: center;
position: sticky;
top: 0;
}
.navbar ::before{
content: "";
position: absolute;
background:rgba(0, 0, 0, 0.5);
height: 100%;
width: 100%;
z-index: -1;
}
.navbar ul{
display: flex;
list-style: none;
}
.navbar ul li{
font-size: 1.1rem;
}
.navbar ul a{
padding: 5px 20px;
text-decoration: none ;
color: white;
}
.navbar ul li a:hover{
border-bottom: 2px solid yellow;
text-transform: uppercase;
}

/* Home Section */
#home{
display: flex;
flex-direction: column;
height: 650px;
justify-content: center;
align-items: center;
background-color:rgba(0, 0, 0, 0.5) ;
color: rgb(25, 26, 22);
}
#home::before{
content: "";
position: absolute;
top: 0;
left: 0;
background: url("background.webp") no-repeat center center/cover;
height: 700px;
width: 100%;
z-index:-1;
opacity: .8;
}
.heading{
color: rgb(25, 26, 22);
font-size: 3rem;
font-family: Georgia, 'Times New Roman', Times, serif;
text-align: center;
transform: scale(1,1);
}

/* Portfolio Section */
#portfolio{
display: flex;
flex-direction: column;
background-color: #000000dc;
}
#portfolio h1{
margin: 60px;
}
.gallery{
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.gallery img{
width: 360px;
height: 640px;
padding: 10px;
margin: 10px;
}
.gallery img:hover{
background-color: black;
cursor: pointer;
}

/* Education Section */
#education{
display: flex;
flex-direction: column;
background-color: black;
}
#education h1{
margin: 60px;
}
.columns{
display: grid;
grid-template-columns: auto auto;
padding-left: 50px;
}
.box{
height: 200px;
width: 500px;
background-color: black;
border-radius: 20px;
margin: 10px;
padding: 20px;
}
.box h2{
color: yellowgreen;
font-size: 2rem;
margin-bottom: 40px;
}
.box p{
color: black;
font-size: 1.1rem;
}

/* About Section */
about{
display: flex;
flex-direction: column;
height: 600px;
}
#about h1{
color: black;
margin: 55px;
}
.about{
display: flex;
}
.about img{
width: 500px;
height: 400px;
padding: 0px 30px;
}
.name{
padding: 10px;
}
.name h2{
font-size: 2rem;
}
.name p{
font-size: 1.2rem;
}

/* Contact Section */
#contact{
display: flex;
flex-direction: column;
background-color: #000000dc;
}
#contact h1{
margin: 50px;
}
.form{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.input{
padding: 15px 20px;
margin: 15px;
width: 40%;
border: none;
outline: none;
border-radius: 25px;
}
#message{
margin: 15px;
padding: 10px;
border-radius: 20px;
}
#submit{
padding: 15px 20px;
margin: 30px;
width: 15%;
border-radius: 20px;
background-color: black;
color: blueviolet;
border: none;
outline: none;
}
#submit:hover{
background-color: green;
color: black;
cursor: pointer;
}