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