-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (24 loc) · 877 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<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>
<style>
body {
margin: 0;
padding: 0;
background-image: url('D:\DOWNLOAD\chai and react\05passwordGenerator\public\bgim.jpg'); /* Specify the path to your image */
background-size: cover; /* Adjust as needed */
background-repeat: no-repeat; /* Adjust as needed */
background-position: center; /* Adjust as needed */
height: 100vh; /* Make sure the background covers the entire viewport height */
}
</style>
</head>
<body style="background-color: black;">
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>