-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyoda.html
40 lines (32 loc) · 1006 Bytes
/
yoda.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
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="yoda.js"></script>
<title>Star Wars Name</title>
<link rel="stylesheet" type="text/css" href="yoda.css">
</head>
<body>
<form class="entry-form">
Jedi Name
<br>
Last Name
<input id="last" type="text" oninput="getYourJediName" maxlength=3 minlength=3></input>
<br>
First Name
<input id="first" type="text" oninput="getYourJediName" maxlength=2 minlength=2></input>
<br>
Moms First Name
<input id="momsName" type="text" oninput="getYourJediName" maxlength=2 minlength=2></input>
<br>
Birth City
<input id="birth" type="text" oninput="getYourJediName" maxlength=3 minlength=3></input>
<br>
<div id="jediNameLabel">Your Jedi Name</div>
<!-- <input id="jediName" type="text"></input> -->
</form>
<div class="stars"></div>
<div class="twinkling"></div>
<div class="clouds"></div>
</body>
</html>