<!DOCTYPE html>
<html>
<head>
<title>Simple JSON Example</title>
</head>
<body>
<h2>JSON Example</h2>
<script>
// Create a simple JSON object
let student = {
"name": "Manasi",
"age": 17
};
// Display on console
console.log(student);
// Display on web page
document.write("Name: " + student.name + "<br>");
document.write("Age: " + student.age);
</script>
</body>
</html>