forked from changqing18/Html
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshow.html
More file actions
34 lines (34 loc) · 833 Bytes
/
show.html
File metadata and controls
34 lines (34 loc) · 833 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Show User</title>
<link rel="stylesheet" href="css/show.css">
</head>
<body id="forms">
<h1>User information</h1>
<div id="status"></div>
<ul data-url="users/1">
<li>
<b>Name</b>
<span id="name" contenteditable="true">Hugh Mann</span>
</li>
<li>
<b>City</b>
<span id="city" contenteditable="true">Any town</span>
</li>
<li>
<b>State</b>
<span id="state" contenteditable="true">Oh</span>
</li>
<li>
<b>Postal Code</b>
<span id="postal_code" contenteditable="true">92110</span>
</li>
<li>
<b>Email</b>
<span id="email" contenteditable="true">boss@awesomecompany.com</span>
</li>
</ul>
</body>
</html>