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