-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwordRefresh.html
27 lines (24 loc) · 905 Bytes
/
wordRefresh.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
<!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" />
<link rel="stylesheet" href="style.css" />
<script type="module" src="./Components/btnComponent.js"></script>
<script type="module" src="./Components/cardComponent.js"></script>
<title>faker generator</title>
</head>
<body>
<nav>
<h1>Word Refresh</h1>
<btn-comp class="adverbs">generate adverbs</btn-comp>
<btn-comp class="verbs">generate verbs</btn-comp>
<btn-comp class="nouns">generate noun</btn-comp>
</nav>
<user-card class="printAdverbs"></user-card>
<user-card class="printVerbs"> </user-card>
<user-card class="printNouns"> </user-card>
<script type="module" src="./Actions/createUsers.js"></script>
</body>
</html>