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