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