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