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