Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
  • Loading branch information
Imran-imtiaz48 authored Jul 9, 2024
commit 8e7a3b8035538d9dcb0633d0c47512a3d5eaf8a7
6 changes: 3 additions & 3 deletions Source-Code/BluringImage/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bluring Image</title>
<title>Blurring Image</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="loading-text">0%</div>
<section class="bg"></section>

<script src="script.js"></script>
<script src="script.js" defer></script>
</body>
</html>
</html>