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