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