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