-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (62 loc) · 2.47 KB
/
index.html
File metadata and controls
69 lines (62 loc) · 2.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>English Dictionary - Unlocking Language, Empowering Knowledge</title>
<!-- Google Icons -->
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<!-- Input Area -->
<div class="input-area">
<form class="flex">
<input type="text" name="word" placeholder="Enter Word" id="inputField" required>
<input type="submit" value="Define" name="submit-btn">
</form>
</div>
<!-- Definition Area -->
<div class="definition-area">
<p class="placeholder-text" id="placeholderText">
Simply type in a word you're curious about to discover its meaning, usage, and more.
</p>
<p class="placeholder-text searching">
Searching...
</p>
<div class="all-details">
<!-- <p class="word-phonetic-pronunce">
<span class="word">hello</span>
<span class="phonetic">/həˈləʊ/</span>
<span class="pronunce">
<span class="material-symbols-outlined">
volume_up
</span>
</span>
</p>
<div class="meaning">
<p class="partOfSpeech">exclamation</p>
<div class="defs">
<div class="single-def">
<p class="def">
<span class="heading">1. </span>
<span class="text">used as a greeting or to begin a phone conversation.</span>
</p>
<p class="example">
<span class="heading">example: </span>
<span class="text">hello there, Katie!</span>
</p>
</div>
</div>
</div> -->
</div>
</div>
<p class="footer">
<a href="https://github.com/adilcodes">Made By Adil Sheikh</a>
</p>
</div>
<!-- Custom JavaScript Code -->
<script src="app.js"></script>
</body>
</html>