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