in javascript:
// Get the paragraph element
var paragraph = document.getElementById("myParagraph");
// Set the font-family property to Times
paragraph.style.fontFamily = "Times";
// Remove the margin property
paragraph.style.margin = "0";
CSS:
.times-font-no-margin{
font-family: Times;
margin: 0;
}