Built with blockbuilder.org This is a basic a example and my first....it shows how to get started with web development.
xxxxxxxxxx
<header>
</header>
<style>
p {
font-size: 18px;
}
#first-paragraph {
font-size: 35px;
}
.fancy{
color: purple;
}
</style>
<body>
<div class="fancy">
<p id="first-paragraph" style= "color:blue;">
Hilda Espinal
</p>
</div>
<p id="Second-paragraph">
is my given name
</p>
<svg>
<!--this is how you comment on your code, here I will add a circle-->
height="100" width="100">
<circle cx="75" cy="78" r="50" stroke="black" stroke-width="3" fill="purple" />
</svg>
</body>