Htnl json code
hnywu6unknown
plain_text
2 months ago
775 B
7
Indexable
<html>
<head>
<title>Simple JSON Data</title>
</head>
<body>
<label> Name:</label><span id="userName"></span><br/>
<label> Phone:</label><span id="userPhone"></span><br/>
<label> Email:</label><span id="userEmail"></span><br/>
<script>
var std_Data ={
std_Name:"Niraj Rana",
std_Phone:"98000000011",
std_Email:"[email protected]",
};
document.getElementById("userName").innerHTML=std_Data.std_Name;
document.getElementById("userPhone").innerHTML=std_Data.std_Phone;
document.getElementById("userEmail").innerHTML=std_Data.std_Email;
</script>
</body>
</html>Editor is loading...
Leave a Comment