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