-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (43 loc) · 1.8 KB
/
Copy pathindex.html
File metadata and controls
50 lines (43 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Derek Dhammaloka">
<meta name="description"
content="Applying the every() method to a JavaScript Iterator. For example, if every character in the text is a digit (0-9) or an alphabet letter (case insensitive)">
<meta name="keywords"
content="JavaScript, Iterators, every, text, alphabet, case, insensitive, digits, letters, method">
<link rel="icon" href="favicon.ico">
<title>JavaScript Iterators - every() Method</title>
<!-- Load Styles -->
<link rel="stylesheet" href="libs/bootstrap/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<main>
<!-- Set Up Header -->
<header class="container-fluid text-center">
<h1>JavaScript Iterators every() Method</h1>
</header>
<!-- Set Up Form -->
<section class="container-fluid">
<form>
<div class="form-floating mb-3">
<input type="text" id="mytext" class="form-control" title="Enter text (e.g. Hello World)"
placeholder="Enter text (e.g. Hello World)">
<label for="mytext">Text</label>
</div>
<div class="d-grid gap-2 d-flex justify-content-center">
<button type="reset" id="clearBtn" class="btn btn-warning">Clear</button>
</div>
</form>
</section>
<!-- Display Results -->
<article id="results" class="container-fluid"></article>
</main>
<!-- Load Scripts -->
<script src="libs/jquery/jquery-4.0.0.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>