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