hyTags
HomeHome Getting StartedGetting Started DocumentationDocumentation

Getting Started

To try hyTags locally on your computer, create a local file with the following contents or download it with the button below.
<head>
  <title>Hello, hyTags!</title>
  <script src="https://hytags.org/downloads/hytags-0.0.1.js"></script>
  <style>
      h1 {
          text-align: center;
          margin-top: 20px;
          font-family: sans-serif;
      }
      action, function, on, init, map-value, property, on-property-change, map-property {
        display: none;
      }
    </style>
</head>
<body>
  <h1 style="opacity: 0.0">Hello, hyTags!</h1>
  <init>
    <style-animate duration="3">
      <style-set name="opacity" value="1.0"></style-set>
    </style-animate>
  </init>
</body>