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