34 lines
763 B
HTML
34 lines
763 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Smart Analyzer v3</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
<h1>Smart Analyzer v3</h1>
|
|
|
|
<input type="number" id="numberInput" placeholder="Enter a number">
|
|
|
|
<br><br>
|
|
|
|
<!-- Sorting Option -->
|
|
<select id="sortOption">
|
|
<option value="asc">Ascending</option>
|
|
<option value="desc">Descending</option>
|
|
</select>
|
|
|
|
<br><br>
|
|
|
|
<button onclick="handleAnalyze()">Analyze</button>
|
|
|
|
<div id="output"></div>
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
|
|
</body>
|
|
</html> |