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