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