Skip to content
Open
Show file tree
Hide file tree
Changes from 3 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
64 changes: 64 additions & 0 deletions Noor-E-Nisa/01/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
<!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>Best Property in April</title>
<link rel="stylesheet" href="style.css">
<!-- google fonts roboto link -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<!-- font awesome link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>

<div class="property-header">
<h2>Best Property in April</h2>
<div>

</div>
<p class="arrows">
<a class="symbol" href="#"><i class="fa-solid fa-arrow-left"></i></a>
<a class="symbol" href="#"><i class="fa-solid fa-arrow-right"></i></a>
</p>
</div>

<div class="container">

<!-- first box -->
<div class="box" id="box1">
<img class="building-img" src="https://via.placeholder.com/140x100" alt="placeholder">
<div class="text">
<h4>Tokas Penthouse</h4>
<a href="#">Learn more <i class="fa-solid fa-arrow-right"></i></a>
</div>

</div>
<!-- second box -->
<div class="box" id="box2">
<img class="building-img" src="https://via.placeholder.com/140x100" alt="placeholder">

<div class="text">
<h4>Tokas Penthouse</h4>
<a href="#">Learn more <i class="fa-solid fa-arrow-right"></i></a>
</div>

</div>
<!-- third box -->
<div class="box" id="box3">
<img class="building-img" src="https://via.placeholder.com/140x100" alt="placeholder">

<div class="text">
<h4>Tokas Penthouse</h4>
<a href="#">Learn more <i class="fa-solid fa-arrow-right"></i></a>
</div>

</div>

</div>

</body>
</html>
225 changes: 225 additions & 0 deletions Noor-E-Nisa/01/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,225 @@
body{
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;

}
.property-header{
display: grid;
grid-template-columns: 3fr 3fr 2fr;

}

.property-header h2{
margin-top: 40px;
margin-left: 160px;
color: #101047;
}
.arrows{
margin-top: 40px;
margin-left: 80px;
}
a{
text-decoration: none;
}
.building-img{
border-radius: 10px;
padding: 5px;
}
.symbol{
border: 1px solid #d4d4d4;
color: black;
padding: 10px;
font-size: 12px;
border-radius: 70%;
}

.container{
display: flex;
justify-content: center;
align-items: center;
gap: 30px;
}

.box{
display: flex;
border-radius: 10px;
border: 1px solid #f2f2f2;
}
.box h4{
color: #101047;

}

.box:hover {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0), 0 2px 20px 0 rgba(0, 0, 0, 0.1);
}

.text{
padding: 10px;
}
.text a{
color: #696969;

}
@media(max-width: 350px){
.property-header h2{
position: relative;
left: 20px;
}
.arrows{
display: flex;
flex-direction: row;
padding: 5px;
position: relative;
right: 20px;
}

.symbol i{
padding-top: 10px;
}

.container{
overflow: visible;
}

.box{
position: relative;
right: 40px;
}

}


@media screen and (max-width: 400px) {
*{
overflow-x: hidden;
}
.property-header{
display: flex;


}
.property-header h2{
margin-left: 10px;
}
.container{
display: inline-flex;
margin-left: 60px;
}
.arrows{
overflow-x: visible;
}
.box{
max-width: 250px;
margin-left: 30px;
}

}

@media (min-width: 640px) {
*{
overflow-x: hidden;

}

.container{
display: inline-flex;
margin-left: 40px;
gap: 20px;
}
.property-header{
display: grid;
grid-template-columns: 3fr 1fr 2fr;
}
.arrows{
overflow-x: visible;
margin-right: 0px;
}

.property-header h2{
margin-left: 50px;
}
.box{
min-width: 350px;
height: 150px;
margin-left: 80px ;
margin-right: 80px;
}


}
/* md */
@media (min-width: 768px) {
*{
overflow-x: hidden;
}
.property-header{
display: grid;
grid-template-columns: 2fr 1fr 2fr;
}

.container{
display: inline-flex;
justify-content: space-around;
gap: 40px;
margin-right: 40px;
}
.box{
min-width: 450px;
margin-left: 150px;
margin-right: 190px;
}
.arrows{
margin-left: 200px;
}


}
/* lg */
@media (min-width: 1024px) {

.property-header{
display: grid;
grid-template-columns: 2fr 3fr 2fr;
}


.container{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
margin-right: 20px;
gap: 30px;
margin-left: 40px;
margin-right: 40px;


}
.container >*{
flex: 1;
}

.box{
min-width: 200px;
margin-left: 0;
margin-right: 0;

}

}
/* xl */
@media (min-width: 1280px) {
.arrows{
margin-left: 250px;
}

}
/* 2xl */
@media (min-width: 1536px) {
.arrows{
margin-left: 320px;
}

}
1 change: 1 addition & 0 deletions Noor-E-Nisa/README.md.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Noor-E-Nisa
16 changes: 16 additions & 0 deletions Noor-E-Nisa/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />

<title>RixoTech / Noor-E-Nisa</title>
</head>
<body>
<ul>
<li>
<a href="./01/index.html">01</a>
</li>
</ul>
</body>
</html>
2 changes: 2 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
<li><a href="./Mintu Das/index.html">Mintu Das</a></li>
<li><a href="./Mozahidul Islam/index.html">Md Mozahidul Islam</a></li>
<li><a href="./Firuz kabir/index.html">Firuz Kabir</a></li>
<li><a href="./Noor-E-Nisa/index.html">Noor-E-Nisa</a></li>

</ul>
</body>
</html>