Skip to content

Commit

Permalink
First Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Sagar-Sharma-7 committed May 3, 2021
0 parents commit 2102ff8
Show file tree
Hide file tree
Showing 9 changed files with 676 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
1 change: 1 addition & 0 deletions api.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
https://www.dictionaryapi.com/api/v3/references/learners/json/test?key=9284d4a3-9817-41b9-969e-f83a87fca44a
45 changes: 45 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="./public/img/logo.png" type="image/png">
<link rel="stylesheet" href="./public/css/style.css">
<title>Dictionary</title>
</head>
<body>

<div class="container">

<div class="searchBox">
<form>
<input type="text" id="userWord" placeholder="Search any word..." autocomplete="off">
<input type="submit" value="search" id="search">
</form>
</div>

<div class="contentBox">
<p id="word" class="errorText"></p>
<p id="speech" class="errorText"></p>

<hr>
<p id="text" class="errorText"></p>
<hr>
<dl>
<dt id="def1"></dt>
<dd>
<p id="defination1" class="errorText"></p>
</dd>
<dt id="eg1"></dt>
<dd>
<p id="example1" class="errorText"></p>
</dd>
<hr>
<p id="offensive" class="errorText"></p>
</dl>
</div>
</div>
<script src="./public/js/main.js"></script>
</body>
</html>
Loading

0 comments on commit 2102ff8

Please sign in to comment.