Skip to content

Commit 0db49a5

Browse files
Update index.html
Added meta viewport tag to improve mobile responsiveness.
1 parent a886c55 commit 0db49a5

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

index.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<!doctype html>
22
<html lang="en">
33
<head>
4-
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
6-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>clear</title>
4+
<meta charset="UTF-8" /> <!-- Defines the character encoding as UTF-8 -->
5+
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> <!-- Sets the favicon for the page -->
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <!-- Ensures responsive design on mobile devices -->
7+
<title>clear</title> <!-- Title of the webpage shown in the browser tab -->
88
</head>
99
<body>
10-
<div id="root"></div>
11-
<script type="module" src="/src/main.jsx"></script>
10+
<div id="root"></div> <!-- Main container where the React app will be rendered -->
11+
<script type="module" src="/src/main.jsx"></script> <!-- Loads the main React entry file -->
1212
</body>
1313
</html>

0 commit comments

Comments
 (0)