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