I am attempting to create a fade-in effect on a website letter by letter, but I seem to be running into formatting issues with JavaScript. Can anyone spot the error in this code (see below)? You can view the current version deployed here - - where you can see the problem.
Thanks, Florian
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Results</title>
<style>
/* CSS styles here */
</style>
<script>
// JavaScript script here
</script>
</head>
<body>
<div class="results-container">
<!-- HTML content here -->
</div>
</body>
</html>
This is what I have attempted - I expected the formatting (h1 tags etc. / list format) to remain intact, but as you can see, it appears to be messed up.
Best Regards