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