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