Use on the webTotal Use [ 6224 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/10ebbad717d776e941c9f3d26db826ce?family=XCLUXD%2BMMTimesItalic" 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/10ebbad717d776e941c9f3d26db826ce?family=XCLUXD%2BMMTimesItalic);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "XCLUXD+MMTimesItalic";
src: url("https://db.onlinewebfonts.com/t/10ebbad717d776e941c9f3d26db826ce.eot");
src: url("https://db.onlinewebfonts.com/t/10ebbad717d776e941c9f3d26db826ce.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/10ebbad717d776e941c9f3d26db826ce.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/10ebbad717d776e941c9f3d26db826ce.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/10ebbad717d776e941c9f3d26db826ce.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/10ebbad717d776e941c9f3d26db826ce.svg#XCLUXD+MMTimesItalic")format("svg");
}
2CSS rules to specify fonts
font-family: "XCLUXD+MMTimesItalic";