forked from KwickerHub/WebCraftifyAI
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from hiranmayee1123/Issue-427
- Loading branch information
Showing
1 changed file
with
105 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |