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