Built with blockbuilder.org
xxxxxxxxxx
<header>
</header>
<style>
p {
font-size: 20px;
}
#first-paragraph {
font-size: 40px;
}
.fancy {
color: #e74a89;
}
</style>
<body>
<div class="fancy">
<p id="first-paragraph">
This is my text.
</p>
</div>
<p id="second-paragraph">
I'm here for the d3 workshop
</p>
<!-- Add a circle -->
<svg height="100" width="100">
<circle cx="50" cy="50" r="40" stroke="rgb(0,0,0)" stroke-width="4" fill="#ffd905" />
</svg>
</body>