Having trouble displaying the Twitter timeline in my web browser. Even though I'm using the original code from the Twitter publish website, it's not showing up properly. Initially, the timeline appeared correctly but after refreshing the site with F5, it stopped working. Oddly, at a certain X time when I refreshed again, it worked. However, when I restarted my computer and tried to work on the file again, it didn't display as expected. Could the issue lie within the script tag? I'm no HTML expert so any guidance would be appreciated.
I've searched through other Stack Overflow questions for solutions, but haven't found anything that helps. Prior to experimenting without the timeline feature, my code had no issues.
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>test</title>
</head>
<body>
<a class="twitter-timeline" href="https://twitter.com/ErinCorleyGray/lists/stackers?ref_src=twsrc%5Etfw">A Twitter List by ErinCorleyGray</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</body>
</html>
Instead of displaying the Twitter list timeline, only the text "A Twitter list by ..." is appearing.