Discover millions of ebooks, audiobooks, and so much more with a free trial

Only $11.99/month after trial. Cancel anytime.

CSS Typography and Web Fonts
CSS Typography and Web Fonts
CSS Typography and Web Fonts
Ebook95 pages14 minutes

CSS Typography and Web Fonts

Rating: 0 out of 5 stars

()

Read preview

About this ebook

In this book "CSS Typography and Web Fonts" we explore the CSS typography properties that control font sizes, line heights, letter spacing and more...
LanguageEnglish
Publishertredition
Release dateJun 21, 2024
ISBN9783384268372
CSS Typography and Web Fonts
Author

Abdelfattah Ragab

Abdelfattah Ragab, a professional software developer with many years of experience in business. I develop projects that make the business thrive, grow the company and increase the customer base. I have been using technology to achieve business goals for many years and have a lot of experience in driving business success.

Read more from Abdelfattah Ragab

Related to CSS Typography and Web Fonts

Related ebooks

Information Technology For You

View More

Related articles

Reviews for CSS Typography and Web Fonts

Rating: 0 out of 5 stars
0 ratings

0 ratings0 reviews

What did you think?

Tap to rate

Review must be at least 10 words

    Book preview

    CSS Typography and Web Fonts - Abdelfattah Ragab

    Introduction

    In this book CSS Typography and Web Fonts we explore the CSS typography properties that control font sizes, line heights, letter spacing and more.

    Chapter 1: Font-related properties

    font-family

    The font-family property defines the font for an element.

    Values

    family-name, .., generic-family

      p {

        font-size: 30px;

    font-family: Arial, Helvetica, sans-serif;

      }

      Lorem ipsum dolor sit amet consectetur adipisicing elit. Minus magni alias

      odit quia optio quae eaque, sed enim a laboriosam numquam neque velit qui

      maiores quos nostrum facere in ab. Reiciendis, nostrum obcaecati dolore vel

      nam quidem molestias eos magnam quibusdam aliquid accusamus sed nesciunt

      necessitatibus commodi voluptatum similique et!

    font-size

    The font-size property sets the size of a font.

    Values

    Keywords

    medium (default)

    Set the font size to a medium size.

      p {

        font-size: medium;

      }

    length

    Sets the font-size to a fixed size in px, cm, etc.

      p {

        font-size: 30px;

      }

    %

    Sets the font-size to a percent of  the parent element's font size.

      p {

        font-size: 80%;

      }

    font-weight

    The font-weight CSS property sets the weight (or boldness) of the font. The weights available depend on the font-family that is currently set.

    Values

    Keywords

    Numeric values

    normal (default)

    Normal font weight. Same as 400.

    Enjoying the preview?
    Page 1 of 1