Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Miriam Allman
Courses Plus Student 1,761 Pointswhy is my Alert not showing up in browser - I see file not found
<!doctype html>
<html lang="en" >
<head>
<meta charset="utf-8">
<title> My Page</title>
<link rel="stylesheet" type="text/css"
href="application.css">
<script type="text/javascript"
alert ('Hello World!');
</script>
</head>
<body>
</body> </html>
Luke Hayes
Python Web Development Techdegree Student 1,230 PointsLuke Hayes
Python Web Development Techdegree Student 1,230 PointsYou didn't close your opening script tag. After where you have type="text/javascript" you need to add a closing bracket like this >
There may be mistakes that I've made because I'm learning myself but your HTML file should look more like this: