domrs 0.0.17

Document builder and serializer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>TITLE</title>
  <link href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap" rel="stylesheet">
  <style>
    .my-text {
        color: blueviolet;
        font-family: "Pacifico", serif;
        font-size: 40pt;
    }
  </style>
</head>
<body>
  <span class="my-text">Document builder and serializer</span>
</body>
</html>