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