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