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