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