Spaces:
Runtime error
Runtime error
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Herbal Drying Prediction App</title> | |
<!-- Bootstrap CSS --> | |
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"> | |
<!-- Custom CSS --> | |
<style> | |
body { | |
background: #f8f9fa; | |
} | |
.container { | |
margin-top: 80px; | |
} | |
.card { | |
border-radius: 15px; | |
box-shadow: 0 8px 16px rgba(0,0,0,0.15); | |
} | |
.btn-custom { | |
font-size: 1.25rem; | |
padding: 15px 20px; | |
border-radius: 10px; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container text-center"> | |
<h1 class="mb-4">Herbal Drying Prediction App</h1> | |
<div class="row justify-content-center"> | |
<div class="col-md-6"> | |
<div class="card p-4"> | |
<a href="regression.html" class="btn btn-primary btn-custom w-100 mb-3">Regression Prediction</a> | |
<a href="classification.html" class="btn btn-success btn-custom w-100">Classification Prediction</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Bootstrap JS Bundle --> | |
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script> | |
</body> | |
</html> | |