Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
Fixed page not beeing able to find script and styles
  • Loading branch information
phant0m2290 authored Apr 5, 2024
1 parent 76c8cf0 commit 5bbbda0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RSA Encryption Demo</title>
<script src="/index.js"></script>
<link rel="stylesheet" href="/index.css">
<script src="./index.js"></script>
<link rel="stylesheet" href="./index.css">
</head>
<body>
<div class="section">
Expand Down Expand Up @@ -39,4 +39,4 @@ <h2>Decrypt Data</h2>
<textarea id="decryptResult" rows="4" cols="50" readonly></textarea>
</div>
</body>
</html>
</html>

0 comments on commit 5bbbda0

Please sign in to comment.