<!DOCTYPE html>
<html>
<head>
<title>Der Titel des Dokuments</title>
<style>
p.example {
margin: 10%;
}
</style>
</head>
<body>
<h2>Beispiel für die Eigenschaft margin</h2>
<p>Lorem Ipsum ist ein Blindtext der Druck- und Satzindustrie.</p>
<p class="example">Lorem Ipsum ist ein Blindtext der Druck- und Satzindustrie.</p>
<p>Lorem Ipsum ist ein Blindtext der Druck- und Satzindustrie.</p>
</body>
</html>