Computer Science, asked by mahir4269, 10 hours ago

Question 2
You are planning to add CSS to a web page that was written with HTML and has images on the page. What new formatting option will you gain by including CSS?

Answers

Answered by poodle1bao
0

Answer:

Styled borders(dotted, solid, colored, etc.) surrounding the image may be added through CSS.

Explanation:

<head>

<style>

img {

border: 1px solid yellow;

}

</style>

</head>

Similar questions