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