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