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