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