use more diverse elements

This commit is contained in:
carson 2021-07-15 15:09:47 -06:00
parent 654c3707ce
commit 79d179e6fd

View File

@ -61,26 +61,26 @@ everyone reading this will understand:
```html ```html
<html <html
<body> <body>
<div> <section>
<div> <p>
Name: Joe Blow Name: Joe Blow
</div> </p>
<div> <p>
Email: joe@blow.com Email: joe@blow.com
</div> </p>
<div> <p>
<a href="/contacts/42/edit">Edit</a> <a href="/contacts/42/edit">Edit</a>
<a href="/contacts/42/email">Email</a> <a href="/contacts/42/email">Email</a>
<a href="/contacts/42/archive">Archive</a> <a href="/contacts/42/archive">Archive</a>
</div> </p>
</div> </section>
</body> </body>
</html> </html>
``` ```
Here we have a basic bit of html, with some divs, a bit of information and then some anchor tags to perform various Here we have a basic bit of html, with some divs, a bit of information and then some anchor tags to perform various
operations on a contact. Nothing fancy. Again, for the discussion, imagine this content could be found at operations on a contact. Nothing fancy. Again, for the discussion, imagine this content could be found at
<http://example.com/contacts/1>. <http://example.com/contacts/42>.
Back to the dissertation: Back to the dissertation: