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