Hey there, I've been working on a website that needs to match this design:
https://i.sstatic.net/39bW3.png
This is an image of what I have completed so far:
https://i.sstatic.net/WyEC2.png
Here is the code I've written:
body {
overflow-x: hidden;
}
.design {
width: 771px;
height: 568px;
margin-left: 364px;
margin-right: 365px;
margin-top: 247px;
margin-bottom: 200px;
}
.image1 {
width: 138px;
height: 92px;
margin-top: 33px;
margin-left: 24px;
margin-right: 116px;
}
.image2 {
width: 99px;
height: 98px;
margin-top: 35px;
margin-left: 24px;
margin-right: 81px;
}
.image3 {
width: 79px;
height: 90px;
margin-top: 39px;
margin-left: 25.7px;
margin-right: 60px;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
...
</style>
</head>
<body>
<header>
<div class="row">
<div class="col-6"></div>
<div class="col">
<div class="text-end">
<img src="images/location.png" alt="" class="image1" />
<img src="images/how.png" alt="" class="image2" />
<img src="images/why.png" alt="" class="image3" />
</div>
</div>
</div>
</header>
<img src="images/home.png" alt="" class="design" />
</body>
</html>
I've managed to position the images correctly but I'm struggling with adding text below each image. Bootstrap has also been integrated. Any tips on how to accomplish this would be greatly appreciated.
Thanks in advance.