Reputation: 26
I have WhatsCast.in And I want to change font of the whole Website or the HTML file.. Help.. I am new to coding so tell me where to put the code and so... Thanks in Advance.
Upvotes: 0
Views: 1576
Reputation: 411
Here's a list of web safe fonts to choose from
HTML
<html class="myFontClass">
</html>
css
.myFontClass{
font-family: Helvetica;
}
Upvotes: 1
Reputation: 408
Put the font-family
declaration into a body selector:
body {
font-family: Algerian;
}
All the elements on your page will inherit this font-family then (unless, of course you override it later).
Upvotes: 2