-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 839 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
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css"
rel="stylesheet"
/>
<title>vasu Portfolio Website</title>
<style>
.main_loading {
position: absolute;
top: 0;
left: 0;
display: flex;
justify-content: center;
align-items: center;
z-index: 2000;
height: 100vh;
width: 100%;
opacity: 1;
background-color: black;
}
.main_loading-hidden {
opacity: 0;
z-index: -100;
}
</style>
</head>
<body class="light-theme">
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>