If you view "simple.html" in your browser, you will see the words This is a simple webpage on a white or grey background. Where did everything else go? And what are those words with the angle brackets?
<
>
).
<element>
) and ends with a closing tag (</element>
).
The elements: html, head, title, are all standard HTML elements that refer to the overall document and are helpful for supporting compatibility with different browsers. These elements are not worked with directly in Twine, however.
The body is where you put text and elements to be displayed in the main browser window. The reason that the words This is a simple webpage appear when you display simple.html
is becaused you placed them in the body
.
This is a simple webpage. And I mean <em>really</em> simple. But... <strong>important</strong>, too!
Change the name of this to "emphasis.html", then SAVE. Open downloaded html file into your browser.
<em>
and ending at the </em>
<strong>
and ending at the </strong>
.