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