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