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