+ 3
What im doing wrong?
html; head; title/title /head; body; script; alert ("Hi my name is Jeff!"); /script /body /html
2 Antworten
+ 6
//You are doing all wrong, it's something like this 👇
<html>
<head>
</head>
<body>
<script>
alert("Hi my name is Jeff!")
</script>
</body>
</html>
0
The above is very correct..
ensure you place title tag in the head tag, like this 👇
<html>
<head>
<title></title>
</head>
<body>
<script>
alert("Hi my name is Jeff!")
</script>
</body>
</html>