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