var fio = document.getElementById("fio")
var age = document.getElementById("age")
var email = document.getElementById("email")
var d=prompt("Type name", "");
fio.innerHTML = fio.innerHTML + "<font color=’Pink’>" +d + "</font>";
d=prompt("Type age", "");
age.innerHTML = age.innerHTML +"<font color=’Blue’>" + d + "</font>";
d=prompt("Type e-mail", "");
email.innerHTML = email.innerHTML +"<font color=’Red’><em>" + d +"</em></font>";
fio.style.backgroundColor = "LightBlue";
fio.style.fontFamily = "sans-serif";
age.style.backgroundColor = "Aquamarine";
email.style.backgroundColor = "LightBlue";
email.style.fontFamily = "sans-serif";