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