Use on the webTotal Use [ 6225 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/2ff15e28e0fcc02f32d6151c249c3029?family=Map+Roman+Variable" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/2ff15e28e0fcc02f32d6151c249c3029?family=Map+Roman+Variable);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Map Roman Variable";
src: url("https://db.onlinewebfonts.com/t/2ff15e28e0fcc02f32d6151c249c3029.eot");
src: url("https://db.onlinewebfonts.com/t/2ff15e28e0fcc02f32d6151c249c3029.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/2ff15e28e0fcc02f32d6151c249c3029.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/2ff15e28e0fcc02f32d6151c249c3029.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/2ff15e28e0fcc02f32d6151c249c3029.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/2ff15e28e0fcc02f32d6151c249c3029.svg#Map Roman Variable")format("svg");
}
2CSS rules to specify fonts
font-family: "Map Roman Variable";