<?php
$card = new WP_Query( array( 'post_type' => 'card') );
if ( $card->have_posts() ) :
while ( $card->have_posts() ) : $card->the_post(); ?>
<div class="card">
<h2><?php the_title(); ?></h2>
<p><? the_content(); ?></p>
</div>
<?php endwhile; ?>
<?php endif; ?>