-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
36 lines (33 loc) · 1.06 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<!-- <link rel="icon" href="/favicon.ico" /> -->
<link rel="icon" href="data:,">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<noscript>
<link rel="stylesheet" href="/assets/css/noscript.css" />
</noscript>
<title>My Portfolio</title>
</head>
<body>
<noscript>
<div id="no-script">
<div id="no-script-box">
<img id="no-script-img" src="/assets/images/js-logo.png" alt="" />
<p id="no-script-maintext">
Oh Noes! I need JavaScript to run this app.
</p>
<p id="no-script-subtext">
This Web application relies on Javascript to function, please
<a target="_blank" rel="noopener noreferrer"
href="https://www.enable-javascript.com/">
enable</a> it. Thank You!🚀
</p>
</div>
</div>
</noscript>
<div id="root"></div>
<script type="module" src="/src/index.jsx"></script>
</body>
</html>