Skip to content

Commit

Permalink
basicportfolio3
Browse files Browse the repository at this point in the history
  • Loading branch information
Ajoy19 committed Aug 18, 2022
0 parents commit 16d2ac6
Show file tree
Hide file tree
Showing 9 changed files with 148 additions and 0 deletions.
Binary file added My portfolio.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# BasicPortfolio3
Binary file added img/lp1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/lp2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/lp3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/pic1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/pic2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
69 changes: 69 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
<!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>Personal Website</title>

<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="flex">
<div class="half_width">
<h3 class="mt1">Hello I'm</h3>
<h2>Sandelina Sam</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quis corrupti ad minima nisi numquam quod eveniet iusto consequatur vel! Reiciendis molestias ullam inventore suscipit nihil.</p>
<button>More</button>
</div>
<div class="half_width">
<img src="img/pic1.png" alt="">
</div>
</section>

<section class="flex">
<div class="half_width">
<img src="img/pic2.png" alt="">
</div>
<div class="half_width">
<h3 class="mt1">Hello I'm</h3>
<h2>Sandelina Sam</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Aperiam odit doloremque id quia fugiat sit!</p>
<button>More</button>
</div>
</section>

<section class="Work">
<h3 class="text_center mt1">My Last Work</h3>
<div class="flex">
<div class="m2">
<img src="img/lp1.jpg" alt="">
</div>
<div class="m2">
<img src="img/lp2.jpg" alt="">
</div>
<div class="m2">
<img src="img/lp3.jpg" alt="">
</div>
</div>

<h3 class="text_center mt1">What Client's Are Say</h3>
<p class="text_center"><b>lorem Ipsum</b></p>
<p class="text_center">Best Services Ever</p>
<p class="text_center">Lorem ipsum dolor sit amet consectetur adipisicing elit. Eligendi, perspiciatis!</p>
</section>

<footer>
<div class="contact mt1">
<h3 class="text_center">Contact Me With</h3>
<p class="text_center">Mail : [email protected]</p>
</div>
<br>
<br>
<br>
<br>
<p class="text_center">&copy;copyright 2022-23 || All Right's Resarved by Sandelina Sam.</p>
</footer>

</body>
</html>
78 changes: 78 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
body{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
section{
height: 90vh;
width: 88%;
margin: 3%;
padding: 3%;
}

.mt1{
margin-top: 100px;
}
.mt05{
margin-top: 50px;
}
.half_width{
margin: 2% 5%;
padding: 2%;
width: 40%;
}
.half_width img{
width: 450px;
}
.flex{
display: flex;
}
h2{
font-size: 2.5rem;
color: rgb(253, 4, 87);
}
h3{
font-size: 1.5rem;
color: #222;
}
p{
text-align: justify;
font-size: 1rem;
color: #222;
}
button{
padding: 10px 20px;
background-color: rgb(253, 4, 87);
color: white;
font-weight: bolder;
border: none;
border-radius: 15px;
cursor: pointer;
}
.text_center{
text-align: center;
}
.Work img{
width: 400px;
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}
.m2{
margin: 20px;
}
.contact{
margin: 10% 25% 0 25%;
padding: 2%;
background-color: rgb(253, 4, 87);
border-radius: 25px;
}
.contact h3{
color: white;
}
.contact p{
color: white;
}
footer{
height: 300px;
}

0 comments on commit 16d2ac6

Please sign in to comment.