-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaswin_sentences.html
267 lines (235 loc) · 11.4 KB
/
aswin_sentences.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
<html>
<head>
<title>
Aswin Sentences
</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"></script>
<!-- Popper JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<style>
h2{
font-size:50px;
}
body{
background-color:rgb(255, 222, 192);
color:rgb(0, 128, 128);
}
#loading {
position: absolute;
left: 50%;
top: 50%;
z-index: 1;
text-align: center;
color:green;
background-color:yellow;
top: calc(50% - 45px);
left: calc(50% - 61px);
text-align: center;
font-weight: bold;
}
#myUL li a:hover:not(.header) {
background-color: purple;
}
#loader {
position: absolute;
left: 50%;
top: 50%;
z-index: 1;
width: 130px;
height: 130px;
}
#myDiv {
display: none;
}
p{
font-size:25px;
}
</style>
</head>
<body onload="myFunction()">
<script>
$(document).ready(function(){
$("#mysearch").on("keyup", function() {
var value = $(this).val().toLowerCase();
$("#myUL li").filter(function() {
$(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
});
});
});
var myVar;
function myFunction() {
myVar = setTimeout(showPage, 3000);
}
function showPage() {
document.getElementById("loader").style.display = "none";
}
</script>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<!-- Brand/logo -->
<a class="navbar-brand" href="#">Aswin's Sentences</a>
<!-- Links -->
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="mailto:[email protected]@gmail.com?subject=Request More Words/Sentences">Request More Words and Sentences</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="modal" data-target="#terms">Terms of Use</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#">Help</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.aswinapps.com">Back to Home</a>
</li>
</ul>
<Span style="text-align:right;"><div class="form-inline" style="text-align:right;">
<input type="text" id="mysearch" placeholder="Search Words..." class="form-control mr-sm-2"
>
</div>
</Span>
</nav>
<div class="modal" id="terms" style="color:black">
<div class="modal-dialog">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<h4 class="modal-title">Terms of Use</h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<!-- Modal body -->
<div class="modal-body">
All of these sentences are (C) Aswin's Good Apps and Sentences team. In case you copy the sentences, you would need to cite the source from Aswin's Sentences. These sentences are just for examples and would not be copied often. You could paraphrase these sentences and make them your sentence instead of copying sentences. These sentences are just few examples of sentences and not all of the sentences possible for that word. In case these sentences are inaccurate, don't feel free to contact us.
</div>
<!-- Modal footer -->
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<DIV ID="loader" class="spinner-border text-info">
</DIV>
</center>
<br>
<ul id="myUL" alt="No rows to show" class="list-group" style="overflow-y: scroll; height:215px;">
<li class="list-group-item"> <a class="btn btn-primary" data-toggle="collapse" data-target="#amount"><mark>Amount</mark> Sentence Examples</a>
</li>
<li class="list-group-item"> <a class="btn btn-primary" data-toggle="collapse" data-target="#at"><mark>At</mark> Sentence Examples</a>
</li>
<li class="list-group-item"> <a class="btn btn-primary" data-toggle="collapse" data-target="#chapter"><mark>Chapter/Chapters</mark> Sentence Examples</a>
</li>
<li class="list-group-item"> <a class="btn btn-primary" data-toggle="collapse" data-target="#effort"><mark>Effort</mark> Sentence Examples</a>
</li>
<li class="list-group-item"> <a class="btn btn-primary" data-toggle="collapse" data-target="#microscope"><mark>Microscope</mark>Sentence Examples</a></li>
<li class="list-group-item"> <a class="btn btn-primary" data-toggle="collapse" data-target="#pamphlet"><mark>Pamphlet</mark>Sentence Examples</a></li>
<li class="list-group-item"> <a class="btn btn-primary" data-toggle="collapse" data-target="#telephone" ><mark>Telephone</mark> Sentence Examples</a>
</li>
<li class="list-group-item"> <a class="btn btn-primary" data-toggle="collapse" data-target="#tomato" ><mark>Tomato/Tomatoes</mark> Sentence Examples</a>
</li>
<li class="list-group-item"> <a class="btn btn-primary" data-toggle="collapse" data-target="#verb" ><mark>Verb</mark> Sentence Examples</a>
</li>
</ul>
<div id="definitions" class="jumbotron">
<h4><center>Sentence Examples</center></h4>
<div id="at" class="collapse">
<button type="button" class="close" data-toggle="collapse" data-target="#at">×</button>
<h5><center>At</center></h5>
<ol class="list-group" type="1">
<li class="list-group-item">There are many animals <b>at</b> the zoo.</li>
<li class="list-group-item">There are many toys <b>at</b> my house.</li>
<li class="list-group-item">Oh no! There are no heathers <b>at</b> my house.</li>
<li class="list-group-item">Where are we <b>at</b> right now?</li>
</ol>
</div>
<div id="tomato" class="collapse">
<button type="button" class="close" data-toggle="collapse" data-target="#tomato">×</button>
<h5><Center>Tomato/Tomatoes</Center></h5>
<ol class="list-group" type="1">
<li class="list-group-item">Wow!There are many <b>tomatoes</b> at the grocery store!</li>
<li class="list-group-item">Oh no!The rabbit ate a <b>tomato</b> from my garden!</li>
<li class="list-group-item">Do you now how much Roma <b>tomatoes</b> cost?</li>
<li class="list-group-item">Do you now how much pound this <b>tomato</b> is?</li>
</ol>
</div>
<div id="pamphlet" class="collapse">
<button type="button" class="close" data-toggle="collapse" data-target="#pamphlet">×</button>
<h5><Center>Pamphlet</Center></h5>
<ol class="list-group" type="1">
<li class="list-group-item">Do you know what is the <b>pamphlet</b> that Thomas Jeferson wrote?</li>
<li class="list-group-item">Do you want to publish the <b>pamphlet</b> that you made?</li>
<li class="list-group-item">Do you now how much this <b>pamphlet</b> costs?</li>
<li class="list-group-item">Do you know who wrote this awesome <b>pamphlet?</b></li>
</ol>
</div>
<div id="chapter" class="collapse">
<button type="button" class="close" data-toggle="collapse" data-target="#chapter">×</button>
<h5><Center>Chapter/Chapters</Center></h5>
<ol class="list-group" type="1">
<li class="list-group-item">What <b>chapter</b> are you currently reading?</li>
<li class="list-group-item">I am reading the 7th <b>chapter</b> of this book.</li>
<li class="list-group-item">Oh no! I can't find the <b>chapter</b> book that I got from the library!</li>
<li class="list-group-item">Have you ever read a <b>chapter</b> book before?</li>
<li class="list-group-item">I have only read some of the <b>chapters</b> in this book.</li>
<li class="list-group-item">There are only a few <b>chapters</b> left in this book.</li>
<li class="list-group-item">There are many <b>chapter</b> books in this library.</li>
</ol>
</div>
<div id="microscope" class="collapse">
<button type="button" class="close" data-toggle="collapse" data-target="#microscope">×</button>
<h5><Center>Microscope</Center></h5>
<ol class="list-group" type="1">
<li class="list-group-item">The <b>microscope</b> helped me see the small item much bigger.</li>
<li class="list-group-item">Where did my <b>microscope</b> go?</li>
<li class="list-group-item">Wow! This pencil is much bigger when I see the pencil through a <b>microscope</b>.</li>
<li class="list-group-item">I used the <b>microscope</b> to look at the items bigger.</li>
</ol>
</div>
<div id="telephone" class="collapse">
<button type="button" class="close" data-toggle="collapse" data-target="#telephone">×</button>
<h5><Center>Telephone</Center></h5>
<ol class="list-group" type="1">
<li class="list-group-item">Do you know when <b>telephones</b> were invented?</li>
<li class="list-group-item">You can make phone calls using a <b>telephone</b>.</li>
<li class="list-group-item">Do you know who invented the <b>telephone</b>?</li>
<li class="list-group-item">Do you know when people switched from <b>telephones</b> to cell phones?</li>
<li class="list-group-item"><B>Telephones</B> was a big addition to the way we communicate.</li>
</ol>
</div>
<div id="verb" class="collapse">
<button type="button" class="close" data-toggle="collapse" data-target="#verb">×</button>
<h5><Center>Verb</Center></h5>
<ol class="list-group" type="1">
<li class="list-group-item">Can you please find the <b>verb</b> in the sentence?</li>
<li class="list-group-item">What is the action <b>verb</b> in the sentence?</li>
<li class="list-group-item">Please tell me the <b>verb</b> phrase in the sentence.</li>
<li class="list-group-item">Is the word sitting a <b>verb</b> or a noun?</li>
<li class="list-group-item">Please tell me what is a helping <B>verb</B>.</li>
</ol>
</div>
<div id="effort" class="collapse">
<button type="button" class="close" data-toggle="collapse" data-target="#effort">×</button>
<h5><Center>Effort</Center></h5>
<ol class="list-group" type="1">
<li class="list-group-item">Wow! It looks like you have put in a lot of <b>effort</b> for this project!</li>
<li class="list-group-item">You need to put in a lot of <b>effort</b> in your work in order to get a good grade.</li>
<li class="list-group-item">This person has put lots of <b>effort</b> in this awesome painting.</li>
<li class="list-group-item">Many people put in their best <b>effort</b> to create this huge and amazing building.</li>
</ol>
</div>
<div id="amount" class="collapse">
<button type="button" class="close" data-toggle="collapse" data-target="#amount">×</button>
<h5><Center>Amount</Center></h5>
<ol class="list-group" type="1">
<li class="list-group-item">What is the <b>amount</b> of money you have right now?</li>
<li class="list-group-item">Please tell me the <b>amount</b> of guests that are going to come here.</li>
<li class="list-group-item">Can you please selected the <b>amount</b> of money you would like to donate.</li>
</ol>
</div>
</div>
</body>
</html>