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