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