tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

enveloped-tree-1-ref.xhtml (835B)


      1 <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      3  <head>
      4    <title>Enveloped tree</title>
      5  </head>
      6 
      7  <body>
      8    <!-- First tree -->
      9    <svg xmlns="http://www.w3.org/2000/svg" width="200px" height="200px"
     10      id="adopter">
     11      <rect x="0" y="0" width="199" height="199"
     12        style="fill: none; stroke: black"/>
     13      <circle cx="100" cy="50" r="15" fill="skyblue" stroke="black"
     14        stroke-width="1"/>
     15      <!-- Second tree -->
     16      <svg xmlns="http://www.w3.org/2000/svg" width="200px" height="200px"
     17        id="adoptee">
     18        <rect x="0" y="0" width="199" height="199"
     19          style="fill: none; stroke: black"/>
     20        <circle cx="100" cy="110" r="15" fill="greenyellow" stroke="black"
     21          stroke-width="1"/>
     22      </svg>
     23    </svg>
     24  </body>
     25 </html>