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