Skip to content

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
Signed-off-by: SkandaBT <9980056379Skanda@gmail.com>
  • Loading branch information
skanda890 authored Nov 23, 2024
1 parent 3f72ced commit 6b48fde
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions dictionary-app/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dictionary App</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Dictionary App</h1>
<form id="dictionary-form">
<input type="text" id="word" placeholder="Enter a word" required>
<button type="submit">Define</button>
</form>
<div id="result"></div>
</div>
<script src="script.js"></script>
</body>
</html>

0 comments on commit 6b48fde

Please sign in to comment.