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