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

Portfolio-Website #111

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
21 changes: 21 additions & 0 deletions task_webDev/Pratham_Pratyush_Giri_2102081006/Contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!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>Document</title>
</head>
<body>
<form action="">
<h1><b>Contact Me</b></h1>
<p>Name:<input type="text"></p>
<p>E-mail: <input type="email" name="" id=""></p>
<p>Message:<textarea name="" id="" cols="30" rows="10"></textarea></p>
<p><input type="submit" value="Submit"></p>


</form>

</body>
</html>
31 changes: 31 additions & 0 deletions task_webDev/Pratham_Pratyush_Giri_2102081006/Website.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!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>My Portfolio</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="hero">
<nav>
<ul>
<li><a href="#">HOME</a></li>
<li><a href="portfolio.html" target="_blank">PORTFOLIO</a></li>
</ul>
</nav>
<div class="detel">
<h1>I am
<br> Pratham <span>Pratyush</span> <span>Giri</span></h1>
<p>This is the official portfolio website to show all
<br>Details and Educational Qualifications of mine.
</p>
<a href="Contact.html">Contact Me</a>
<a href="(11) Pratham Pratyush Giri _ LinkedIn.html" class="fa fa-linkedin"></a>
<a href="Pratham Pratyush Giri (@pratham_pratyush_giri) • Instagram photos and videos.html" class="fa fa-instagram"></a>
</div>
</div>
</body>
</html>
35 changes: 35 additions & 0 deletions task_webDev/Pratham_Pratyush_Giri_2102081006/portfolio.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<!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="style2.css">
</head>
<body>
<div class="hero">
<div class="detel">
<h1>My name is Pratham Pratyush Giri</h1>
<hr>
<h1><fieldset>Education Qualifications:</fieldset> </h1>
<p><fieldset>I have completed my matriculation from DAV Public School,Bandhabahal,Jharsuguda,768211
<br>I have completed my Intermediate from Kautilya Senior Secondary School,Kota,Rajasthan.
<br>and currently i am pursuing my B.Tech Degree in the department of Information Technology.
</fieldset>
</p>
<hr>
<h2>D.O.B:02/06/2002</h2>
<hr>
<h2>Place of birth:Jharsuguda</h2>
<hr>
<h2>Area of Interests:</h2>
<p><ol type="I">
<li>I love reading Manga</li>
<li>I like to watch anime</li>
<li>I also have a keen interest on making and developing Websites</li>
</ol>
</p>
</div>
</body>
</html>

Large diffs are not rendered by default.

75 changes: 75 additions & 0 deletions task_webDev/Pratham_Pratyush_Giri_2102081006/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
body{
margin: 0;
padding: 0;
font-family: sans-serif;
}
.hero{
position: r;
width: 100%;
height: 100vh;
background: rgb(144, 238, 225)
}
nav{
display: flex;
width: 84%;
margin: auto;
padding: 18px 0;
align-items: center;
justify-content: space-between;
}
nav ul li{
display: inline-block;
list-style: none;
margin: 10px 20px;
}
nav ul li a{
text-decoration: none;
color:black;
font-weight: bold;
}
nav ul li a:hover{
color:brown;
}
.detel{
margin-left: 8%;
margin-top: 10%;
}
.detel h1{
font-size: 50px;
color:black;
margin-bottom: 20px;
}

span{
color:orange;
}
.detel p{
color:#555;
line-height: 22px;
}
.detel a{
background: #212121;
padding: 10px 18px;
text-decoration: none;
font-weight: bold;
color:#fff;
display: inline-block;
margin: 30px 0;
border-radius: 5px;

}
.fa {
padding: 20px;
font-size: 30px;
width: 50px;
text-align: center;
text-decoration: none;
}
.fa:hover {
opacity: 0.7;
}
.fa-linkedin {
background: #55ACEE;
color: white;
}

17 changes: 17 additions & 0 deletions task_webDev/Pratham_Pratyush_Giri_2102081006/style2.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
body{
margin: 0;
padding: 0;
font-family: sans-serif;
}
.hero{
position: r;
width: 100%;
height: 100vh;
background: rgb(120, 243, 132)
}
.detel{
margin: auto;
width: 50%;
border: 3px solid green;
padding: 20px;
}