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