;this is a comment. The ? means title
?Example
;the # means header
#Hello
;the . means paragraph, writes text
.This is an example of
;b makes it bold
bHTP
..
;empty line means newline
;I tag means image
;it is not used however as I does not support image scaling
;therefore we use <?html>, read below
;I/htp/logo.png
<?html><img src="/htp/logo.png" height="360">
.HTP allows HTML tags to be included in the site, like so:
;<?html> is the same as . but allows for inclusion of html tags
<?html><marquee>
.this is a marquee, not
;i for italic
idirectly
.supported by HTP but usable through the use of the <?html> tag
<?html></marquee>
;keep <?html> usage limited, try to only use it for non-supported formatting or repeated line breaks
;The a means link href
a/htp/good-job.htp
;the ^ ends a link with its text
^Click on this link!
.<!DOCTYPE html> and <meta charset="UTF-8"> automatically appended
.View site code
a/htp/view-source
^here