I have successfully created an HTML flip card:
<div id="services_card" class="shadow iOS">
<div class="front face">
<i class="fa fa-apple fa-4x"></i> <p>iOS</p>
</div>
<div class="back face center">
<i class="fa fa-apple fa-4x"></i> <p>iOS</p>
<p>This is useful for displaying additional information about an image.</p>
<p>Any content can be placed here.</p>
</div>
</div>
However, I am encountering a browser compatibility issue with the transform rotate property. While it works fine on Chrome, it behaves incorrectly on Safari or Firefox.
Feel free to check out this jsfiddle link to see the flip card in action.