xxxxxxxxxx
<header>
</header>
<style>
p {
font-size: 35px;
}
#first_paragraph {
font-size: 50px;
}
.fancy {
color: pink;
}
</style>
<body>
<div class="fancy">
<p id="first_paragraph">
hello!
</p>
</div>
<p id="second_paragraph">
I'm here for a workshop
</p>
<!-- add a circle comment -->
<svg height="100" width="100">
<circle cx="50" cy="50" r="40" stroke="pink" stroke-width="15" fill="rgb(-141, 198, 203"); />
</svg>
</body>