I have used the font Arial Rounded MT Bold for my H1 heading through CSS. I have the font installed on my computer. But it still won't show when I preview the HTML file.
HTML:
<h1>CSS-Tricks</h1>
CSS:
h1 {
color:#FFF;
font-family: "Arial Rounded MT Bold", "Helvetica Rounded", Arial, sans-serif;
font-size: 65px;
font-weight: 100;
line-height:25px;
padding:30px;
}
Sorry for basic question but I am new to HTML/CSS.