<!DOCTYPE html>
<!-- Please do not edit the code below. -->
<html>
<head>
<title> 3.3 CSS: Font Size </title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<h4 id="first-heading"> This is a heading. </h4>
<p id="first-paragraph"> This is a paragraph. </p>
<h4 id="second-heading"> This is another heading. </h4>
<p id="second-paragraph"> This is another paragraph. </p>
</body>
<!-- Do not remove following lines. They're used to test. -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://sites.webjam.org/grader/assignment3.3.js"></script>
</html>
body {
/* Please do not edit this code */
font-size: 16px;
}
/* PART A - Change font size of first paragraph to 12px using px */
#first-paragraph {
}
/* PART B - Change font size of second paragraph to 32px using em */
#first-heading {
}
/* PART C - Change font size of second paragraph to 12pt using pt */
#second-paragraph {
}
/* PART D - Change font size of second heading to 32px using % */
#second-heading {
}