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