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