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
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