Add index.html
This commit is contained in:
34
index.html
Normal file
34
index.html
Normal file
@@ -0,0 +1,34 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user