14 lines
345 B
HTML
14 lines
345 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Knowledge Fusion App</title>
|
|
</head>
|
|
<body>
|
|
<form method="POST">
|
|
<input type="text" name="url" placeholder="Enter the URL">
|
|
<input type="number" name="depth" placeholder="Crawl depth" value="3" min="1" max="5">
|
|
<input type="submit" value="Search">
|
|
</form>
|
|
</body>
|
|
</html>
|