-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (37 loc) · 1.68 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
<!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">
<meta name="author" content="Pia Torain">
<meta name="description" content="An app that checks to see if the user's input is an isogram.">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<title>Isogram Checker | Pia Torain</title>
</head>
<body id="page">
<div id=iso-container class="container">
<h1>This is a test!</h1>
<form id="form">
<p class="intro">
An <strong><em>isogram</em></strong> is a word that has no repeating letters, consecutive or non-consecutive.
</p>
<!-- INPUT FIELD -->
<div class="input-holder">
<!-- USER INPUT -->
<input id="isogramText" class="text-field" name="isogramText" type="text" placeholder="Enter Text Here" autocomplete= "off" />
<!-- SUBMIT BUTTON -->
<button id="check-input" class="btn-check" type="submit" >CHECK IT!</button>
</div>
<!--/ INPUT FIELD -->
<!-- RESPONSES BASED ON CRITERIA EVALUATION -->
<p id="eval" class="isoEval"></p>
<p id="isTrue" class="isoTrue"></p>
<p id="isFalse" class="isoFalse"></p>
<!-- /RESPONSES BASED ON CRITERIA EVALUATION -->
</form>
</div>
<script src="main.js"></script>
</body>
</html>