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