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