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