Can anyone help me create a couple of styled "blocks" in HTML and CSS similar to the design shown in the image? I've searched for templates but can't find anything that matches my vision, so any assistance would be appreciated. (links not required)
I'm still learning about web development, so please bear with me if there are any errors.
I attempted to create something similar using images, but it doesn't seem to be working as expected...
<div class="jumbotron">
<center>
<!-- FIRST ROW -->
<div class="row">
<img src="http://www.example.com/image1.jpg" width="200" height="200" border="0">
<img src="" width="200" height="200" border="0" class="img-circle">
<img src="http://www.example.com/image2.jpg" width="200" height="200" border="0">
<img src="" width="200" height="200" border="0" class="img-circle">
</div>
<p></p>
<!-- SECOND ROW -->
<div class="row">
<img src="" width="200" height="200" border="0" class="img-circle">
<img src="http://www.example.com/image3.jpg" width="200" height="200" border="0">
<img src="" width="200" height="200" border="0" class="img-circle">
<img src="http://www.example.com/image4.jpg" width="200" height="200" border="0">
<p></p>
</div>
</center>
This is the concept I have in mind