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