Update Frontend/index.html
Browse files- Frontend/index.html +21 -21
Frontend/index.html
CHANGED
@@ -1,21 +1,21 @@
|
|
1 |
-
<!DOCTYPE html>
|
2 |
-
<html lang="en">
|
3 |
-
<head>
|
4 |
-
<meta charset="UTF-8" />
|
5 |
-
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
6 |
-
<title>Photo to Emoji</title>
|
7 |
-
<link rel="stylesheet" href="style.css"
|
8 |
-
</head>
|
9 |
-
<body>
|
10 |
-
<h1>Photo to Emoji Converter</h1>
|
11 |
-
<video autoplay="true" id="videoElement"></video>
|
12 |
-
<br />
|
13 |
-
<button onclick="captureAndSend()">Capture & Predict</button>
|
14 |
-
<div id="emojiDisplay"></div>
|
15 |
-
<div id="emotionText"></div>
|
16 |
-
<!-- Download link -->
|
17 |
-
<a id="downloadEmoji" download="emoji.png" style="display: none;">⬇️ Download Emoji</a>
|
18 |
-
|
19 |
-
<script src="scripts.js"></script>
|
20 |
-
</body>
|
21 |
-
</html>
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8" />
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
6 |
+
<title>Photo to Emoji</title>
|
7 |
+
<link rel="stylesheet" href="/static/style.css">
|
8 |
+
</head>
|
9 |
+
<body>
|
10 |
+
<h1>Photo to Emoji Converter</h1>
|
11 |
+
<video autoplay="true" id="videoElement"></video>
|
12 |
+
<br />
|
13 |
+
<button onclick="captureAndSend()">Capture & Predict</button>
|
14 |
+
<div id="emojiDisplay"></div>
|
15 |
+
<div id="emotionText"></div>
|
16 |
+
<!-- Download link -->
|
17 |
+
<a id="downloadEmoji" download="emoji.png" style="display: none;">⬇️ Download Emoji</a>
|
18 |
+
|
19 |
+
<script src="/static/scripts.js"></script>
|
20 |
+
</body>
|
21 |
+
</html>
|