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