-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanimeRandom.html
More file actions
41 lines (26 loc) · 1.11 KB
/
Copy pathanimeRandom.html
File metadata and controls
41 lines (26 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Anime Character Generator</title>
<link rel="stylesheet" href="assets/Animeresources/Animecss/AnimeStyle.css">
</head>
<body>
<!--div to style and place anime team randomizer as a whole-->
<div class="formStyle">
<!--user name prompt input-->
<p id="helloWorld" onclick="changeMe();"><h1> Anime Team Randomizer </h1> </p>
<p id="enterYourName"> </p>
<input type="text" onclick="enterName();" placeholder=" "> <h2>Insert Name</h2> </input>
<!--choose your team title that changes to the team name as the team selection button is pressed.-->
<h2 id ="ranBtn" onclick="randomName();"> Choose Your Team </h2>
<!--form that stores the character select and reset button-->
<form class="formDesign">
<input type="button" id="ranBdtn" onclick="randomName();" name="ranBtn" value="Character Select">
<input type="submit" value="Reset">
</input>
</form>
</div>
<script src="./assets/Animeresources/Animejs/AnimeApp.js">
</script>
</body>
</html>