19 lines
595 B
HTML
19 lines
595 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Iris Prediction Home</title>
|
|
<link rel="stylesheet" href="/static/styles.css">
|
|
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Welcome to Iris Species Predictor</h1>
|
|
<p>This application predicts the species of an Iris flower based on its features.</p>
|
|
<a href="/predict" class="button">Go to Prediction</a>
|
|
<p>© Meta Brains. All rights reserved.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|