-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (44 loc) · 2.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- meta -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Anagram Generator">
<meta name="keywords" content="Anagram, Anagrams, Anagrama, Generator, Generators, Gerador, HTML, CSS, JavaScript, Letters, Words, Github, Random, Letras, Palavras, Aleatório, Geradores, JS">
<meta name="author" content="William Santos">
<meta name="generator" content="Visual Studio Code">
<!-- css -->
<link type="text/css" rel="stylesheet" href="css/global.css">
<link type="text/css" rel="stylesheet" href="css/responsive.css">
<title> Anagram Generator </title>
</head>
<body>
<header>
<h1> Anagram Generator </h1>
</header>
<main>
<article>
<div class="content">
<!-- Input -->
<div class="word-placeholder">
<input type="text" id="inputWord" class="word-input" maxlength="20" placeholder="Type two or more letters..." value="">
<button type="button" id="buttonGenerator" class="btn-generator"> GENERATE </button>
</div>
<!-- Progress -->
<p id="pProgress" class="progress">
<span> Waiting for word (s)... </span>
<button id="buttonStop" class="btn-stop"> Stop </button>
</p>
<!-- Output -->
<div id="divOutput" class="output"></div>
<p id="pRejected" class="rejected"></p>
<span class="link"> Made by <a href="https://github.com/williamdsw"> William Santos </a> </span>
</div>
</article>
</main>
<!-- js -->
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>