Ship construction

by roberts gailitis

HTML

<!DOCTYPE html>
<html>
<body>

<h1>Ship construction</h1>
<p>My first paragraph.</p>
<p> List degrees
<input type="number" id="fname" name="fname"><br>
</p>

<svg width="200" height="200">
  <circle cx="50" cy="50" r="40" stroke="green" stroke-width="4" fill="yellow" />
</svg>
</body>
</html>

CSS

svg {
  border-style: dotted;
}

p {
  text-align: center;
  color: red;
}