Specify an Image Size

Specify an Image Size

If your image appears too big or too small on a web page, you can use HTML coding to change the size with image attributes(Specify an Image Size). We can set the width and height of an image in pixels or as a percentage of the overall window size. This can enable you to combine … Read more

Insert an image using HTML5

Insert an image using HTML5

We can Insert an image into your web pages to increase visual interest or illustrate a topic using HTML5. For example, add a photograph of a product or a company logo to a business’s web page. HTML enables you to display images as inline elements which means they appear within the body of the page … Read more

Style a bulleted list in CSS3

Style a bulleted list in CSS3

We can add style rules to the bulleted list on your page change the shape of the bullets or remove the bullets altogether (Style a bulleted list in CSS3). We can also change how the list items are formatted so that they appear in a horizontal line across the page instead of as a vertical … Read more

Add Back ground color using CSS3

Add Back ground color using CSS3

We can use the background-color property to change the color that appers bbehind the contetn on a page (Add Back ground color using CSS3). For example, you can change the backgrouynd behinds text to afluorscent color to make it appear as if the text has been hightlighted with a maker. you can specify the coloir … Read more

Control letter spacing in CSS3

We can control the spacing between characters, or learn, using the letter-spacing property. (Control letter spacing in CSS3) Letter spacing changes the appearance of your text by increasing or condensing the space between letters. We can specify letter spacing in point(pt), pixel(px), millimeters (mm), centimeters (cm), inches(in) pica(pc), x-height(ex), or em space(em). the specified value … Read more

Control line spacing in CSS3

Control line spacing in CSS3

We can use the line height property to adjust the spacing or lead, between lines of text (Control line spacing in CSS3). Adjusting line spacing can make your web page text easier to read. The line spacing value can be specified as a multiple of the height of the element’s font. It can also be … Read more

Change the text Case in CSS3

We can use the text-transform property to change the text case in CSS3. For example, you may want all <h2> text to appear in all capital letters. The property controls how the browser displays the text regardless of how it was typed. We can choose from four case values: capitalize, uppercase, lowercase, and none. use … Read more

Change text Alignment in CSS3

We can Change text Alignment in the horizontal positioning of blocks of text on your page using the text-align property in CSS3. We can use the technique to align paragraphs, headings, tables, and other elements. We can align text to the left or right, center the text, or create justified text. By default, most browsers … Read more

Change the Font in CSS3

Change the Font in CSS3

To change the font in CSS3 for your HTML text, we Can use the Font-family property. We can specify a font by name. Because not all fonts are available on all compute, we can designate a second or third font choice that way if the computer does not have the first choice installed, the browser … Read more

Change the color of the text

We can use the color property to change the color of the text on your web page. We can specify a recognized color name, a hexadecimal color value, or an RGB value. We can change the text color to make it match the theme of your website. You can use color to emphasize important content, … Read more