You're writing HTML! You're doing it! Everything you need to know is just another tag!

For example, a link to another site looks like this:

<a href="//neocities.org">Check out Neocities!</a>

Add a link to your favorite site to
the end of the paragraph, right
before the </p> closing tag!

Nesting

Tags always need to be nested properly, like Russian dolls. So this is okay:

<%= erb '

Welcome! Link!

', layout: false %>
But this is not correct:
<%= erb '

Welcome! Link!

', layout: false %>