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