Commit e95470e0 authored by IT19974156_Nawagamuwa.N.G.K's avatar IT19974156_Nawagamuwa.N.G.K 🥇

anjalee.html

parent ddb39d9c
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ornamental Fish</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<style>
body {
background-color: #f1f1f1;
}
.container-fluid {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
border-radius: 5px;
}
.maindiv {
text-align: center;
}
.display-4 {
color: #333;
}
form {
margin-top: 20px;
display: flex;
flex-direction: column;
align-items: center;
}
form label {
display: block;
margin-bottom: 10px;
font-weight: bold;
color: #555;
}
form .gender-group {
display: flex;
justify-content: center;
margin-bottom: 10px;
}
form input[type="radio"] {
margin-right: 5px;
}
form input[type="text"] {
padding: 8px;
border: 1px solid #ddd;
border-radius: 4px;
outline: none;
font-size: 16px;
}
form input[type="submit"] {
padding: 10px 20px;
margin-top: 20px;
background-color: #4CAF50;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
h1 {
margin-top: 30px;
font-size: 20px;
color: #555;
}
img {
margin-top: 20px;
max-width: 200px;
max-height: 100px;
}
p {
margin-top: 20px;
font-size: 16px;
color: #555;
}
</style>
<!-- Favicon -->
<link href="img/favicon.ico" rel="icon">
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600&family=Nunito:wght@600;700;800&display=swap" rel="stylesheet">
<!-- Icon Font Stylesheet -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.1/font/bootstrap-icons.css" rel="stylesheet">
<!-- Libraries Stylesheet -->
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Customized Bootstrap Stylesheet -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Template Stylesheet -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<!-- Spinner Start -->
<div id="spinner" class="show bg-white position-fixed translate-middle w-100 vh-100 top-50 start-50 d-flex align-items-center justify-content-center">
<div class="spinner-border text-primary" style="width: 3rem; height: 3rem;" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
<!-- Spinner End -->
<!-- Navbar Start -->
<nav class="navbar navbar-expand-lg bg-white navbar-light shadow sticky-top p-0">
<a href="index.html" class="navbar-brand d-flex align-items-center px-4 px-lg-5">
<h2 class="m-0 text-primary">Ornamental Fish</h2>
</a>
<h2 class="display-8">Fish BMI & Water Colour Indentifier</h1>
<button type="button" class="navbar-toggler me-4" data-bs-toggle="collapse" data-bs-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<div class="navbar-nav ms-auto p-4 p-lg-0">
<a href="index.html" class="nav-item nav-link active">Home</a>
<a href="anjalee.html" class="nav-item nav-link">Anjalee</a>
<a href="gayashan.html" class="nav-item nav-link">Gayashan</a>
<a href="tharushi.html" class="nav-item nav-link">Tharushi</a>
<a href="contact.html" class="nav-item nav-link">Sangeeth</a>
</div>
</div>
</nav>
<!-- Navbar End -->
<!-- Service Start -->
<div class="container-xxl py-5">
<div class="container-fluid">
<div class="maindiv ">
<form action="http://127.0.0.1:8000/resultBMI" method="POST">
<h2>Enter Details</h2>
<p>
<label>Gender</label>
<div class="gender-group">
<input type="radio" id="Male" name="Gender" value="1.0">
<label for="Male">Male . . . </label>
<input type="radio" id="Female" name="Gender" value="0.0">
<label for="Female"> Female</label>
</div>
</p>
<p><label>Height in cm <input type="text" name="Height" value="" pattern="[0-9]{1,5}" required></label></p>
<p><label>Weight in g <input type="text" name="Weight" value="" pattern="[0-9]{1,5}" required></label></p>
<p><input type="submit" value="Submit"></p>
</form>
<form action="http://127.0.0.1:8000/dynamic" enctype="multipart/form-data" method="POST">
<input name="file" type="file" />
<input type="submit" />
</form>
</div>
</div>
</div>
<!-- Service End -->
<!-- Back to Top -->
<a href="#" class="btn btn-lg btn-primary btn-lg-square back-to-top"><i class="bi bi-arrow-up"></i></a>
<!-- JavaScript Libraries -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="lib/wow/wow.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<!-- Template Javascript -->
<script src="js/main.js"></script>
</body>
</html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment