$count = 0;
$terms = get_terms( array(
\'taxonomy\' => \'post_tag\',
\'hide_empty\' => true,
) );
foreach($terms as $term) {
$term_link = get_term_link( $term );
$count++;
<a href="echo $term_link" class="size-1"> echo $term->name </a>;
if ( $count >36 )
break;
}