0
I need help with my code please
Html, csss , js. On my page
2 Antworten
+ 3
I assume the code you're talking about is this one:
https://sololearn.com/compiler-playground/WtxGYiIX9NUS/?ref=app
The error is because you didn't place the closing angle bracket (>) for linking CSS page. Add > at the end of line 9 in HTML part of your code. It should be:
<link rel="stylesheet"
href="styles.css">
0
or you can remove the href part. (new code: )
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF"-8"></meta>
<meta name="viewport"
content="width=device-width,
initial-scale=1.0"></meta>
<title>Rose Animation</title>
<link rel="stylesheet">
</head>
<body>
<div class="rose container"></div>
<div class="rose"></div>
</div>
<script src="script.js"></script>
</body>
</html>