Skip to content

Commit 3d09496

Browse files
Replace header tag by head in html files of js examples (#181)
1 parent c2e96a8 commit 3d09496

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<!DOCTYPE html>
22
<html>
3-
<header>
3+
<head>
44
<title>ONNX Runtime JavaScript examples: Quick Start - Web (using bundler)</title>
5-
</header>
5+
</head>
66
<body>
77
<!-- consume a single file bundle -->
88
<script src="./dist/bundle.min.js"></script>
99
</body>
10-
</html>
10+
</html>

js/quick-start_onnxruntime-web-script-tag/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<!DOCTYPE html>
22
<html>
3-
<header>
3+
<head>
44
<title>ONNX Runtime JavaScript examples: Quick Start - Web (using script tag)</title>
5-
</header>
5+
</head>
66
<body>
77
<!-- see also advanced usage of importing ONNX Runtime Web: -->
88
<!-- https://github.com/microsoft/onnxruntime-inference-examples/tree/main/js/importing_onnxruntime-web -->
@@ -44,4 +44,4 @@
4444
main();
4545
</script>
4646
</body>
47-
</html>
47+
</html>

0 commit comments

Comments
 (0)