Monthly Archives: July 2022

Styling Links Using CSS.

Styling Links Links can be styled with any CSS property (e.g. color, font-family, background, etc.). Example <!DOCTYPE html> <html> <head> <style> a {  color: hotpink; } </style> </head> <body> <h2>Style a link with a color</h2> <p><b><a href=”default.asp” target=”_blank”>This is a link</a></b></p> </body> </html> Result: Style a link with a color This is a link In addition, links can… Read More »

Category: CSS

How To Add Icon In Web Page Using CSS?

How To Add Icons The simplest way to add an icon to your HTML page, is with an icon library, such as Font Awesome. Add the name of the specified icon class to any inline HTML element (like <i> or <span>). All the icons in the icon libraries below, are scalable vectors that can be customized with CSS… Read More »

Category: CSS

How To Add Fonts in CSS?

Choosing the right font for your website is important! Font Selection is Important Choosing the right font has a huge impact on how the readers experience a website. The right font can create a strong identity for your brand. Using a font that is easy to read is important. The font adds value to your… Read More »

How to Formatting a text using CSS?

Text Color The color property is used to set the color of the text. The color is specified by: a color name – like “red” a HEX value – like “#ff0000” an RGB value – like “rgb(255,0,0)” Look at CSS Color Values for a complete list of possible color values. The default text color for a page is defined… Read More »

Category: CSS

How to Add Outline Using?

An outline is a line drawn outside the element’s border. CSS Outline An outline is a line that is drawn around elements, OUTSIDE the borders, to make the element “stand out”. CSS has the following outline properties: outline-style outline-color outline-width outline-offset outline CSS Outline Style The outline-style property specifies the style of the outline, and can have… Read More »

Category: CSS