forked from himanshu-0624/dictionary-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (58 loc) · 3.32 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title id="title">Word Smith</title>
<link id="css" rel="stylesheet" type="text/css" href="index.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
</head>
<body class="bg-dark">
<div class="container-fluid bg-warning">
<img src="Assets/wordsmith_logo.svg" class="img-fluid w-25 mx-auto d-block" alt="Word Smith Logo">
</div>
<div class="container d-flex justify-content-center text-center text-white py-5 my-5">
<form id="form" autocomplete="off">
<label for="input" class="display-5">Enter a word</h1>
<input type="text" class="form-control border border-warning" id="input">
</form>
</div>
<div class="container text-center py-5">
<div class="row">
<div class="col-sm-4">
<div class="card border-warning mb-3">
<h5 class="card-header">Synonyms</h5>
<div class="card-body">
<p class="card-text">A word or phrase that means exactly or nearly the same as another word or phrase in the same language, for example shut is a synonym of close.</p>
<button type="button" class="btn btn-outline-warning" id="submit1">Find Synonyms</button>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card border-warning mb-3">
<h5 class="card-header">Antonyms</h5>
<div class="card-body">
<p class="card-text" id="responseField">In lexical semantics, opposites are words lying in an inherently incompatible binary relationship. For example, something that is long entails that it is not short.</p>
<button type="button" class="btn btn-outline-warning" id="submit">Find Antonyms</button>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card border-warning mb-3">
<h5 class="card-header">Rhyming Words</h5>
<div class="card-body">
<p class="card-text">Rhyming words are two or more words that have the same or similar ending sound. Some examples of rhyming words are: goat, boat, moat, float, coat. </p>
<button type="button" class="btn btn-outline-warning" id="submit3">Find Rhyming Words</button>
</div>
</div>
</div>
</div>
</div>
<div class="bg-light text-center">Made By Himanshu Gupta, Contributor: Amogh Pete</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
<script src="public/main.js"></script>
<script src="public/one.js"></script>
</body>
</html>