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