Skip to content

Commit c62939b

Browse files
authored
Change title and add favicon to index.html
Updated the title and added a favicon link.
1 parent b4f96ea commit c62939b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

index.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
1-
21
<!doctype html>
32
<html lang="en">
43
<head>
54
<meta charset="UTF-8" />
5+
<!-- This line adds the neural network icon to the browser tab -->
6+
<link rel="icon" type="image/svg+xml" href="/convolution_visualization_tool/favicon.svg" />
67
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Convolution Tool</title>
8+
<title>DeepLab: CNN Workbench</title>
89
</head>
910
<body>
11+
<!-- This empty div is where the React app injects itself -->
1012
<div id="root"></div>
13+
<!-- This script loads the actual application code -->
1114
<script type="module" src="/src/main.jsx"></script>
1215
</body>
1316
</html>

0 commit comments

Comments
 (0)