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