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