-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathobjects.html
More file actions
18 lines (18 loc) · 819 Bytes
/
Copy pathobjects.html
File metadata and controls
18 lines (18 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>JSON Objects</title>
</head>
<body>
<input type="text" id="usernameInput" onkeyup="updateUser('usernameInput', 'username')" placeholder="Enter your name!"/>
<h1 id="username"></h1>
<input type="text" id="ageInput" onkeyup="updateUser('ageInput', 'age')" placeholder="Enter your age!"/>
<h3 id="age"></h3>
<input type="text" id="locationInput" onkeyup="updateUser('locationInput', 'location')" placeholder="Enter your location!"/>
<h3 id="location"></h3>
<input type="text" id="bioInput" onkeyup="updateUser('bioInput', 'bio')" placeholder="Something about you!"/>
<p id="bio"></p>
</body>
<script type="text/javascript" src="objects.js"></script>
</html>