Add index.html
This commit is contained in:
26
index.html
Normal file
26
index.html
Normal file
@@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Day 3 - Loops</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="container">
|
||||
<h1>Number Analyzer</h1>
|
||||
|
||||
<input type="number" id="numberInput" placeholder="Enter a number">
|
||||
|
||||
<br><br>
|
||||
|
||||
<button onclick="analyzeNumber()">Analyze</button>
|
||||
|
||||
<div id="output"></div>
|
||||
</div>
|
||||
|
||||
<script src="script.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user