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