2017-08-15

#3 Changing new font

 15 August 2017


Just learnt about CSS and wanted to use a particular font for some part of the blog.
Explanation to new learner :

  1. In order to use a new font.
  2. Import the font.
  3. Implement the font in tags.

HOW TO IMPORT FONT :

 @import url("//fonts.googleapis.com/css?family=Open+Sans:400,600,700")

HOW TO IMPLEMENT FONT :

Put in tags
 style="font-family:'yourfont';"

It looks really different in here than in the blog, but I really like it!
In order to find the font which is intended, it is suggested that you UPLOAD your font over the cloud, or search on the net.
Google Font is a really nice place to search for it.


HOW TO IMPORT & USE FONT :

  1. Click the (+) icon
  2. There will be a family selected tab below the screeen click that
  3. Click @import and you can copy the whole thing into your html code
  4. By using 'style="font-family: font";' you can use the particular font on the tags you specified.

No comments:

Post a Comment