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