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