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