Computer Science, asked by rabboni12082001, 8 days ago

Write the correct format for changing the font type of texts inside all the <p> tags in a web page from ‘arial’ to ‘calibri’ in internal style.​

Answers

Answered by NotThareesh
21

Answer:

Use <p style="font-family: Arial;"> or use p{ font-family: "Arial"; } in the style tag in head

Answered by pragyakirti12345
0

Answer: p{font-family : "Calibri";}

Explanation:

The correct format for changing the font type of texts inside all the <p> tags in a web page from 'arial' to 'calibri' in internal style is :

<p style="font-family: Calibri;">       [inline]

OR

p{ font-family: "Calibri"; }                 [Internal styling]

An internal style sheet may be used if one single HTML page that has a unique style. The internal style is defined inside the <style> element, inside the head section of the HTML .

#SPJ3

Similar questions