<?xml version="1.0"?>

<!-- <!DOCTYPE instruction SYSTEM "../instruction.dtd"> -->

<instruction xmlns="https://www.w3schools.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://www.w3schools.com instruction.xsd">
  <part>
    <step type="round">
      <ring/>
      <chain-stitch times = "3" color="red" />
      <treble-crotchet times = "20" color="red" />
      <chain-stitch times = "3" color="blue" />
      <slip-stitch times = "1" color="blue" />
    </step>

    <step type="round">
      <chain-stitch times = "6" color="red" />
      <double-crotchet times = "1" color="red" />
      <step type="partial" times="10">
        <chain-stitch times = "1" color="blue" />
        <treble-crotchet times = "1" color="blue" />
      </step>
      <chain-stitch times = "4" color="red" />
      <slip-stitch times = "1" color="red" /> <!-- how to mark in which stitch it should go? -->
      <step type="partial" times="10">
        <treble-crotchet times = "1" color="blue" />
        <chain-stitch times = "1" color="blue" />
      </step>
      <double-crotchet times = "1" color="blue" />
      <chain-stitch times = "6" color="blue" />
      <slip-stitch times = "1" color="blue" />
    </step>

    <step type="round">
      <single-crotchet times = "6" color="red" />
      <step type="partial" times="10">
        <chain-stitch times = "3" color="blue" />
        <single-crotchet times = "1" color="blue" />
      </step>
      <single-crotchet times = "2" color="red" />
      <chain-stitch times = "3" color="red" />
      <single-crotchet times = "2" color="red" />
      <step type="partial" times="10">
        <single-crotchet times = "1" color="blue" />
        <chain-stitch times = "3" color="blue" />
      </step>
      <single-crotchet times = "6" color="blue" />
      <slip-stitch times = "1" color="blue" />
    </step>
  </part>
</instruction>
