File size: 636 Bytes
a0004ee 06f84de f238a5c a0004ee |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="/static/css/style.css">
</head>
<body>
<div class="container">
<h1>Welcome to Ink2TextVN</h1>
<p>Choose an option to get started:</p>
<div class="button-container">
<button type="button" onclick="window.location.href='/index'">Go to Webcam Capture</button>
<button type="button" onclick="window.location.href='/other'">Go to Image OCR</button>
</div>
</div>
</body>
</html> |