Understanding CSS Styling (Fonts and Colors):

·

6 min read

Font and Typography

In web development, CSS offers a wide range of properties to customize the appearance of text, including font family, font size, line height, font style, and the ability to import external fonts. Let's explore each of these topics along with examples:

1. Font Family:

The font-family property allows you to specify the typeface or font for the text within an element. It accepts multiple values, separated by commas, in case the preferred font is not available. Here's an example of using the font-family property in CSS:

#para2 {
    font-family: 'Oswald', sans-serif;
}

In this example, the element with the ID para2 will have its text displayed using the 'Oswald' font. If 'Oswald' is not available, the browser will use a generic sans-serif font as a fallback.

2. Font Size:

The font-size property determines the size of the text. You can use various units of measurement like pixels, percentages, ems, or keywords like 'large' or 'small.' Here's an example of setting the font size to 'large':

.paraclass {
    font-size: large;
}

In this case, all elements with the class 'paraclass' will have their font size set to 'large,' resulting in the larger text compared to the default size.

3. Line Height:

The line-height property controls the vertical spacing between lines of text. It can be set to a specific value or a unitless number. Here's an example of setting the line height to 28 pixels:

.paraclass {
    line-height: 28px;
}

In this example, the elements with the class 'paraclass' will have a line height of 28 pixels, which increases the space between each line of text.

4. Font Style:

The font-style property allows you to specify the style of the font, such as italic or normal. Here's an example of setting the font style to italic:

.paraclass {
    font-style: italic;
}

In this case, the elements with the class 'paraclass' will have their text displayed in italic font style.

5. Importing External Fonts:

Importing external fonts enables you to use custom fonts in your web pages. Google Fonts is a popular service that provides a vast collection of fonts. Here's an example of importing the 'Oswald' font from Google Fonts:

<head>
    <link href="https://fonts.googleapis.com/css2?family=Oswald:wght@300&display=swap" rel="stylesheet">
</head>

By including this link tag in the HTML head section, you import the font stylesheets from Google Fonts. Once imported, you can use the imported font in your CSS as demonstrated earlier with the font-family property.

HTML and CSS Code:

To visualize the concepts discussed above, here's the HTML and CSS code that incorporates the font family, font size, line height, font style, and external font import:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="

IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="stylesheet" href="style.css">
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Oswald:wght@300&display=swap" rel="stylesheet">
    <title>Document</title>
</head>
<body>
    <h1>Font family and other properties</h1>
    <p class="paraclass" id="para1">
        <!-- Content goes here -->
    </p>
    <p class="paraclass" id="para2">
        <!-- Content goes here -->
    </p>
    <p class="paraclass" id="para3">
        <!-- Content goes here -->
    </p>
    <p class="paraclass" id="para4">
        <!-- Content goes here -->
    </p>
    <p class="paraclass" id="para5">
        <!-- Content goes here -->
    </p>
</body>
</html>
#para2 {
    font-family: 'Oswald', sans-serif;
}

.paraclass {
    font-size: large;
    font-family: 'Oswald', sans-serif;
    font-weight: 40;
    font-style: italic;
    line-height: 28px;
}

#para1 {
    font-family: 'Oswald', sans-serif;
    background-color: aqua;
}

p {
    font-family: 'Oswald', sans-serif;
}

Feel free to experiment and modify the code to see the changes in the font styles, sizes, and other properties. Understanding these CSS concepts will empower you to create visually appealing and customized web pages.

I hope this blog helps you grasp the concepts of font family, font size, line height, font style, and importing external fonts.

Importing External Fonts:

  1. Linking Fonts:

    Linking fonts refers to using the <link> tag in your HTML code to connect to the font file hosted on the Google Fonts server. Here's how it works:

  • You include a <link> tag in the <head> section of your HTML document.

  • The <link> tag contains the URL of the font file you want to use. This URL is provided by Google Fonts.

  • When a user visits your website, their browser sends a request to the Google Fonts server to fetch the font file.

  • Once the font file is retrieved, the user's browser uses that font to display the text on your website.

The advantage of linking fonts is that it allows you to easily access and use a wide variety of fonts hosted by Google Fonts without having to download and host the font files on your own server. This method provides flexibility in font selection and reduces the burden on your hosting resources.

  1. Importing Fonts:

    Importing fonts involves using CSS @import rule to fetch the font styles from the Google Fonts server. Here's how it works:

  • You include an @import rule in your CSS file or within a <style> tag.

  • The @import rule specifies the URL of the font stylesheets provided by Google Fonts.

  • When the CSS is loaded by the user's browser, it sends a request to the Google Fonts server to fetch the font stylesheets.

  • The font stylesheets contain instructions for the user's browser to fetch the font files and use them to display the text on your website.

The main difference between linking and importing fonts is that linking directly connects to the font file, while importing uses CSS to fetch the font stylesheets, which then instruct the browser to retrieve the font files. The end result is similar, as both methods enable the browser to display the desired fonts on your website.

Overall, the choice between linking and importing fonts depends on your specific requirements and coding preferences. Linking may be more straightforward and commonly used, while importing allows for a more centralized approach if you prefer to include CSS imports in a single file.

Using different color methods in CSS:

1. Named Colors:

Named colors refer to a set of predefined color names in CSS. You can simply use the name of the color to apply it to an element. For example:

#para2 {
  background-color: yellow; /* Using named color */
}

In this case, the background color of the element with the ID para2 will be set to yellow.

2. HSL Colors:

HSL (Hue, Saturation, Lightness) is another color model that allows you to define colors using hue, saturation, and lightness values. Here's an example:

#para3 {
  background-color: hsla(182, 74%, 36%, 0.747); /* Using HSL color */
}

In this example, the background color of the element with the ID para3 will be a specific hue (182), saturation (74%), lightness (36%), and opacity (0.747).

3. RGBA Colors:

RGBA (Red, Green, Blue, Alpha) is a color model that allows you to define colors using the intensity of red, green, and blue channels, along with an alpha value for opacity. Here's an example:

#para4 {
  background-color: rgba(18, 114, 74, 1); /* Using RGBA color */
}

In this case, the background color of the element with the ID para4 will be a specific combination of red (18), green (114), blue (74), and full opacity (1).

4. Hexadecimal Colors:

Hexadecimal colors are represented using a six-digit or eight-digit code starting with a hash symbol (#). The first six digits represent the intensity of red, green, and blue channels, while the optional last two digits represent the alpha channel for opacity. Here's an example:

#para5 {
  background-color: #34368d8e; /* Using hexadecimal color */
}

In this example, the background color of the element with the ID para5 will be determined by the hexadecimal values for red (34), green (36), blue (8D), and alpha (8E).

These are some of the common methods for specifying colors in CSS. By understanding and utilizing these color values, you can effectively style and customize the appearance of your web pages.