mirror of
https://github.com/neocities/neocities.git
synced 2025-07-21 18:16:07 +02:00
Initial HTML for Ch1 tutorial
This commit is contained in:
parent
f753b66ffd
commit
11ab120f77
11 changed files with 212 additions and 17 deletions
33
views/tutorial/html/7.erb
Normal file
33
views/tutorial/html/7.erb
Normal file
|
@ -0,0 +1,33 @@
|
|||
<div class="comic" style="height: 500px">
|
||||
<div class="dialogue">
|
||||
Now maybe your website needs a list. Here's how an unordered list looks:
|
||||
|
||||
<ul>
|
||||
<li>websites</li>
|
||||
<li>yarn</li>
|
||||
<li>catnip</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="dialogue">
|
||||
First, add a list to your page, but replace my favorite activities with your own!
|
||||
</div>
|
||||
<div class="dialogue">
|
||||
Second, put an h2 header above the list with some kind of title like "Interests."
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="welcome">
|
||||
<h4>Lists</h4>
|
||||
<p>You can make an ordered (numbered) list like so:</p>
|
||||
<ol>
|
||||
<li>First item</li>
|
||||
<li>Second item</li>
|
||||
<li>Third item</li>
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function checkHomework(editor) {
|
||||
alert('check homework here')
|
||||
}
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue