css - How to add custom font at wordpress -


the source of font is: /htdocs/wp-content/themes/elegance/fonts/pizza.otf

i add css(style.css):

 @font-face {     font-family:'pizza';     src: url('fonts/narkis.otf'); } 

and add also:

html,body,div,form,fieldset,input,textarea,h1,h2,h3,h4,h5,h6,p,ul,ol,li{ vertical-align:baseline;font-size:100%;padding:0;margin:0;font-family:'pizza'; } 

its not working..


Comments

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -