p elements that have div element as a parent of any leveldiv p {
color: red;
}
Selects all the p elements that are children of the element with id #id1 #id1 p {
color: green;
}
Selects all p elements that have parent element with class .class1 .class1 p {
color: yellow;
}<fieldset> tag should contain legend tag in order the fieldbox to have title
<form action="/action_page.php">
<fieldset>
<legend>Personalia:</legend>
<label for="fname">First name:</label><input type="text" id="fname" name="fname"><br><br>
<label for="lname">Last name:</label><input type="text" id="lname" name="lname"><br>
</fieldset>
</form><h2 id="C4">Chapter 4</h2> and then there are two ways to create a link to the bookmark:
1. <h1 href="#C4">Jump to Chapter 4</h1>
2. <a name="#C4">Jump to Chapter 4</a>