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