-
Notifications
You must be signed in to change notification settings - Fork 0
/
word.html
30 lines (30 loc) · 950 Bytes
/
word.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Random word generator" />
<title>Word Wizard</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body class="body-two">
<script
src="https://cdnjs.cloudfare.com/ajax/libs/randomcolor/0.6.1/randomColor.min.js"
integrity="sha512-vPeZ7JCb0HcfpqSx5ZD+/jpEhS4JpXxfz9orSvAPPj0EKUVShU2tgy7XkU+oujBJKnWmu4"
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script src="./consts.js"></script>
<script src="./index.js"></script>
<p class="random-word" id="random-word"></p>
<hr class="divider" />
<div>
<button id="get-word-button" class="second-button">
Get another word
</button>
</div>
<script>
displayRandomWord();
</script>
</body>
</html>