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