Skip to content

Commit 8e7a3b8

Browse files
Update index.html
Changes made: 1. Added the defer attribute to the script tag to ensure the JavaScript is executed after the HTML is fully parsed. 2. Corrected the title from "Bluring Image" to "Blurring Image" for proper spelling. This structure will ensure that the CSS and JavaScript are properly linked and executed in the correct order.
1 parent 3fbde42 commit 8e7a3b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Source-Code/BluringImage/index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>Bluring Image</title>
6+
<title>Blurring Image</title>
77
<link rel="stylesheet" href="style.css">
88
</head>
99
<body>
1010
<div class="loading-text">0%</div>
1111
<section class="bg"></section>
1212

13-
<script src="script.js"></script>
13+
<script src="script.js" defer></script>
1414
</body>
15-
</html>
15+
</html>

0 commit comments

Comments
 (0)