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