https://i.sstatic.net/SnkO7.jpg
Trying to figure out how to align images like in the picture above. Here's the code I've been working with:
<html>
<head>
<style>
.main
{
width: 634px;
height: 634px;
}
.img1
{
width: 315px;
height: 315px;
}
</style>
</head>
<body>
<img src="photo/01.jpg" class="main"><br>
<img src="photo/05.jpg" class="img1">
<img src="photo/01.jpg" class="img1">
<img src="photo/01.jpg" class="img1">
</body>
</html>
Looking to achieve an instaframe effect on my HTML page. Struggling to add images to the right side though.