You are on page 1of 3

html

---

<h3 class='fw-bold'>Perform Social Tasks And Earn...</h3>

<div class="dix">
<a href="../../group.php" class="ax">
<figure>
<img src="./assets/img/whatsapp.jpg" alt="">
</figure>
<p>Join Whatsapp Groups</p>
</a>
<a href="../../performtask.php" class="ax">
<figure>
<img src="./assets/img/perform.jpg" alt="">
</figure>
<p>Perform Social Tasks</p>
</a>
<a href="https://s3-us-west-2.amazonaws.com/s.cdpn.io/123941/placeimg03.jpg"
class="ax">
<figure>
<img src="./assets/img/buy-task.jpg" alt="">
</figure>
<p>Advertise On Task Panel</p>
</a>
<a href="https://s3-us-west-2.amazonaws.com/s.cdpn.io/123941/placeimg04.jpg"
class="ax">
<figure>
<img src="./assets/img/buy.jpg" alt="">
</figure>
<p>Advertise On Social Media</p>
</a>
<!-- <a href="https://s3-us-west-2.amazonaws.com/s.cdpn.io/123941/placeimg05.jpg"
class="ax">
<figure>
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/123941/placeimg05.jpg"
alt="">
</figure>
</a>
<a href="https://s3-us-west-2.amazonaws.com/s.cdpn.io/123941/placeimg06.jpg"
class="ax">
<figure>
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/123941/placeimg06.jpg"
alt="">
</figure>
</a>
<a href="https://s3-us-west-2.amazonaws.com/s.cdpn.io/123941/placeimg07.jpg"
class="ax">
<figure>
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/123941/placeimg07.jpg"
alt="">
</figure>
</a>
<a href="https://s3-us-west-2.amazonaws.com/s.cdpn.io/123941/placeimg08.jpg"
class="ax">
<figure>
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/123941/placeimg08.jpg"
alt="">
</figure>
</a>
<a href="https://s3-us-west-2.amazonaws.com/s.cdpn.io/123941/placeimg09.jpg"
class="ax">
<figure>
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/123941/placeimg09.jpg"
alt="">
</figure>
</a>
<a href="https://s3-us-west-2.amazonaws.com/s.cdpn.io/123941/placeimg10.jpg"
class="ax">
<figure>
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/123941/placeimg10.jpg"
alt="">
</figure>
</a> -->
</div>

css
---
<style>
h3 {
text-align: center;
font-size: 1.65em;
margin: 0 0 30px;
}

.dix {
font-size: 0;
}

.ax {
font-size: 16px;
overflow: hidden;
display: inline-block;
margin-bottom: 8px;
width: calc(50% - 4px);
margin-right: 8px;
}

.ax p{
margin: auto;
padding: 5px;
color: black;
font-weight: bold;
}

.ax:nth-of-type(2n) {
margin-right: 0;
}

@media screen and (min-width: 50em) {


.ax {
width: calc(25% - 6px);
}

.ax:nth-of-type(2n) {
margin-right: 8px;
}
.ax:nth-of-type(4n) {
margin-right: 0;
}
}

.ax:hover img {
transform: scale(1.15);
}
.ax:hover p {
background: purple;
color: gold;
position: relative;
}

figure {
margin: 0;
/* height: 40px; */
}

.ax img {
border: none;
max-width: 100%;
height: auto;
display: block;
background: #ccc;
transition: transform .2s ease-in-out;
}

</style>

You might also like