Skip to content

Commit

Permalink
Merge pull request #1 from hiranmayee1123/Issue-427
Browse files Browse the repository at this point in the history
  • Loading branch information
hiranmayee1123 committed Mar 23, 2024
2 parents 69ce64a + 55b9142 commit e321106
Showing 1 changed file with 105 additions and 0 deletions.
105 changes: 105 additions & 0 deletions modules/shapes/Issue427.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Layout</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}

.hiranmayee {
display: flex;
}

.left {
width: 70%;
background-color: #fff;
padding: 20px;
}

.right {
width: 30%;
background-color: #f0f0f0;
padding: 20px;
}

.header {
text-align: center;
margin-bottom: 20px;
}

.images {
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}

.image {
width: 48%;
}

.text-box {
background-color: #fff;
padding: 10px;
margin-bottom: 10px;
}

.box-below-images {
background-color: #d0e941;
width: 1050px;
height: 200px;
}


</style>
</head>
<body>
<div class="hiranmayee">
<div class="left">
<div class="header">
<h2>Trucking & Transportation</h2>
</div>
<div class="images">
<div class="image">
<img src="T1.jpeg" alt="Image 1" width="500" height="400">
</div>
<div class="image">
<img src="t2.jpeg" alt="Image 2" width="500" height="400">
</div>
</div>
<div class="box-below-images">
<h3>Fast Service</h3>
<p></p>
</div>
</div>
<div class="right">
<div class="text-box" height="300" width="400">
<h3>Quality Products</h3>
<p>Sample text. Click to select the text box.</p>
<p>Sample text. Click to select the text box.</p>
<p>Sample text. Click to select the text box.</p>
<p>Sample text. Click to select the text box.</p>
<p>Sample text. Click to select the text box.</p>
<p> </p>
<p> </p>
<a href="">Learn More</a>
</div>
<div class="text-box">
<h3>Family Owned</h3>
<p>Sample text. Click to select the text box.</p>
<p>Sample text. Click to select the text box.</p>
<p>Sample text. Click to select the text box.</p>
<p>Sample text. Click to select the text box.</p>
<p>Sample text. Click to select the text box.</p>
<p> </p>
<p> </p>
<a href="">Learn More</a>
</div>
</div>
</div>
</body>
</html>

0 comments on commit e321106

Please sign in to comment.