Tittle of post instead of tittle of page in php

To display post title, you could use:

<a href="https://wordpress.stackexchange.com/questions/310842/<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>

or alternately, a simple:

<?php echo get_the_title(post->$ID); ?>