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