Computer Science, asked by GAURAVSEMWAL3281, 1 year ago

The way browser displays the object can be modified by

Answers

Answered by mangopie018ozihqk
1
Web Languages like html, css
Answered by hotelcalifornia
0

Answer:

The way browser displays the object can be modified by attributes within the HTML document. Size and style attribute are common ones used in HTML. Additionally, CSS can also be used to modify or beautify elements of the web page.  

Example 1: <img src="img_tree.jpg" width="450" height="500">

It will size the image referenced as per the width and height mentioned in the tag.

Example 2: <p style="color:blue">This is a paragraph</p>

It will display the text in blue colour instead of default black.

Similar questions