What would be the output? one.html I am h1 header I am a paragraph Hello I am h3 header tt.css p{font-family: Arial;} h1{font-size: 20px;} zr.css p{font-family: "Ink Free";} h1{font-size: 50px;}

icon
Related questions
Question
What would be the output?
one.html
<html>
<head>
<link rel="stylesheet" href="tt.css"/>
<link rel="stylesheet" href="zr.css"/>
</head>
<body>
<h1> I am h1 header </h1>
<p> I am a paragraph </p>
<h3> Hello I am h3 header </h3>
</body>
</html>
tt.css
p{font-family: Arial;}
h1{font-size: 20px;}
zr.css
p{font-family: "Ink Free";}
h1{font-size: 50px;}
Transcribed Image Text:What would be the output? one.html <html> <head> <link rel="stylesheet" href="tt.css"/> <link rel="stylesheet" href="zr.css"/> </head> <body> <h1> I am h1 header </h1> <p> I am a paragraph </p> <h3> Hello I am h3 header </h3> </body> </html> tt.css p{font-family: Arial;} h1{font-size: 20px;} zr.css p{font-family: "Ink Free";} h1{font-size: 50px;}
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer