Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

in the code sample below, the ____________ element will have the larges…

Question

in the code sample below, the ____________ element will have the largest font. <!doctype html> <html> <head> <style> html { font - size:16px; } h1 { font - size: 3rem; } h2{ font - size: 2rem; } ul { font - size: 4rem; } </style> </head> <body> <h1>butterfly cupcakes</h1>

Explanation:

Brief Explanations

The 'ul' element has a font - size of 4rem, which is larger than the 3rem of 'h1' and 2rem of 'h2'. The base font - size of 'html' is 16px, but the relative units (rem) for 'ul' make it the largest.

Answer:

ul