diff options
author | james pannacciulli <jpnc@jpnc.info> | 2023-06-30 01:07:18 -0400 |
---|---|---|
committer | james pannacciulli <jpnc@jpnc.info> | 2023-06-30 01:07:18 -0400 |
commit | 0abbfcde98660f0e9677ba35e864b91ade9b406a (patch) | |
tree | 556725bea9f7a2144015ed3a47e94716080809ab | |
parent | 724d7e1a62ffed727ccbbf3b5f17e4a21eac083c (diff) | |
download | calligram.me-0abbfcde98660f0e9677ba35e864b91ade9b406a.tar.gz calligram.me-0abbfcde98660f0e9677ba35e864b91ade9b406a.tar.bz2 |
add tooltips to fields / buttons / links
-rw-r--r-- | html/index.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/html/index.html b/html/index.html index dc265a6..8ae4d08 100644 --- a/html/index.html +++ b/html/index.html @@ -64,12 +64,12 @@ </style> </head> <body> - <input id="the_text" type="text" value="" placeholder="Place text here..."> - <input id="the_svg" type="text" value="" placeholder="Paste SVG path 'd' field here..."> - <input id="the_rainbow" name = "textgradient" type="checkbox" value="Rainbow"> - <input id="the_lines" name = "pathlines" type="checkbox" value="Lines"> - <a href="" id=link_href>link</a> - <a href="https://git.jpnc.info/calligram.me/about/">src</a> + <input id="the_text" type="text" value="" title="Place text here"> + <input id="the_svg" type="text" value="" title="Paste SVG path 'd' field here"> + <input id="the_rainbow" name = "textgradient" type="checkbox" value="Rainbow" title="Rainbow Colors?"> + <input id="the_lines" name = "pathlines" type="checkbox" value="Lines" title="Show lines?"> + <a href="" id=link_href title="link to this calligramme">link</a> + <a href="https://git.jpnc.info/calligram.me/about/" title="link to agpl source repo">src</a> <div id="svg-target"></div> <script> // @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt |