HTML
(root) -- create a basic HTML page (with a name)- Tags:
head
- Can be only introduced before the
<body>
. - Currently no other functionality.
- Future functionality:
<style>
,<title>
, etc.
- Can be only introduced before the
body
- can contain other tags
div
- Has a (for now non-removable) class attribute. To be used in combination with a
<style>
tag in the header. - Must be placed inside a
<body>
or other<div>
- Has a (for now non-removable) class attribute. To be used in combination with a
a
- Contains a
href
and aname
field.
- Contains a
p
- Paragraph. Can contain other (text) tags.
span
- Has an optional
style
attribute. You can invoke it by typing[space] style
afterspan
-> More attributes for thestyle
can be added by typing;
.
- Has an optional
- CSS:
name
-value
pairs.- Only part of the
style
attribute.
- Text:
- For writing regular text.
- Can be invoked by writing
text
.
- Alignment in sandbox mode may not always work as expected.
- There is currently no way to export the model to an actual HTML file.
- This project is archived and no longer worked on