The purpose of S2JS is not to teach you HTML, just to provide a bridge to get you from "blocky" languages like Scratch, to real "lines of code" languages.
But for the remainder of this topic, you'll need to know a few simple HTML tags, including:
| <p> | To start a new paragraph |
| <img> | To insert an image |
| <a> | To make a link |
| <div> | To identify an block within in a page |
| <span> | To identify an area within a paragraph |
| <table>, <tr>, <td> | To make tabular information |
| <input> | To make input areas |
| <button> | To make clickable buttons |
If you don't already know about these, or would like to know more, a good resource is the w3Schools HTML Tutorial.
|
|