Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
Order of Elements: I moved the <link> for the favicon after the <title> tag. This is not strictly necessary, but it can help keep your head section organized.
Overall Structure: The overall structure remains the same since it’s already following best practices for an HTML document.
  • Loading branch information
rajeshwariramya authored Oct 19, 2024
1 parent f7d5fb8 commit 95ce0b7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React</title>
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>

0 comments on commit 95ce0b7

Please sign in to comment.