-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (23 loc) · 958 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
<!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>Javascript calculator</title>
<script src="popperjs/umd/popper.min.js"></script>
<script src="bootstrap-5.3.3-dist/js/bootstrap.bundle.min.js"></script>
<link href="bootstrap-5.3.3-dist/css/bootstrap.min.css" rel="stylesheet">
<link href="bootstrap-5.3.3-dist/font/bootstrap-icons.min.css" rel="stylesheet">
<link rel="stylesheet" href="webfont/tabler-icons.min.css" />
<script src="themer.min.js"></script>
<script src="jquery.js"></script>
<script src="index.js"></script>
</head>
<body onload="Themer.init();">
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<!-- Temp -->
<!--<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>-->
</body>
</html>