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