<!DOCTYPE html>
<html>
<head>
<title>HTML Graphics - SVG</title>
<style>
svg {
border: 1px solid green;
padding: 15px;
}
</style>
</head>
<body>
<h1>SVG - Text</h1>
<svg width="300" height="200">
<text x="20" y="30" style="fill: green; font-size: 24px;">
Hello Student!
</text>
<text x="20" y="30" dx="0" dy="20" style="fill: black; font-size: 15px;">
Here you can find tutorials that will help you.
</text>
</svg>
</body>
</html>