HTML Tags EVERY Writer should Know!

Building a website can be fun, but it can also be scary- especially if you don’t know how to code HTML. Thankfully, several website-building programs can create a website with little-to-no coding on your part, but there may be certain elements that you’ll want to add. 

HTML can help!

HTML (Hypertext Markup Language) is a programming language that can help you add fonts, colors, styles, and other design elements to your website with a few keystrokes.

The idea of messing with the code may seem intimidating, but it’s easier to learn and implement than you think! To get you started, here are some basic HTML tags that every writer should know. 

Add a Paragraph

Every good website needs some text, so add it in with a simple paragraph box!

<p> your text </p>

Example

Make it Bold

Most websites have a button that automatically bolds sections of text. However, everyone should know how to do it manually. 

<b> bold text </b>

Example

Make it Italic

Same with italics! It never hurts to know the process. 

<i> italic text </i>

Example

Add a Heading

You can put one just about anywhere with the following tags:

<h1> main header </h1>

<h2> subheader</h2>

<h3> small header </h3>

Example

Include Preformatted Text

Perfect for including poetry ot other format-heavy content. 

<pre> your poem </pre>

Example

Add a long Quote

Need to quote a section of your book? Then use the tag below!

<blockquote cite=”web link”> the quote </blockquote>

Example

Add a short Quote

Use this tag for single sentence quotes.

<q> your text </q>

Example

Give it a Line Break

Put this in the middle of your sentence to create strategic line breaks. 

<p> line of text<br> more text <br> rest of text </p>

Example

Add a Link

Link your books (or other websites) by using:

<a href=”Link”>link title</a>

Example

Strike it Through

Need to strike something through for emphasis or change? Then use:

<s> Your text </s>

Example

Highlight the Important Bits

Put this tag around any words or phrases you want to be highlighted in yellow. 

<mark> your text </mark>

Example

Add an Image

Great for book covers, author photos, and other visual media.

<img src=”link to image” alt=”image title“>

Example

Change the Image Size

If you need your image bigger or smaller, use this tag to adjust the pixels (px) until it’s the size you need. 

<img src=”link to image” alt=”image titlestyle=”width:500px;height:600px;”>

Example

Add an Unordered List

It’s as basic as it can be. 

<ul>

  <li>Item 1</li>

  <li>Item 2</li>

  <li>Item 3</li>

</ul>

Example

Add an Ordered List

Basic with numbers and a set heirarchy. 

<ol>

  <li>Item 1</li>

  <li>Item 2</li>

  <li>Item 3</li>

</ol>

Example

Display a Copyright sign

Protect your works!

<p> 2022 &copy; </p>

Example

Display a Registered Sign

More protection!

<p> &reg; 2022 </p>

Example

Add a Footer

Want your name, bio, or a special message at the end? Add a footer!

<footer>

  <p>Text 1</p>

  <p>Text 2</p>

</footer>

Example

Create a Form

A simple sign-up form. 

<form action=”/Where to send the info-usually an email” method=”get”>

  <label for=”fname”>First name:</label>

  <input type=”text” id=”fname” name=”fname”><br><br>

  <label for=”lname”>Last name:</label>

  <input type=”text” id=”lname” name=”lname”><br><br>

  <input type=”submit” value=”Submit”>

</form>

Example

Give a Summary

The perfect way to summarize your books so the audience can check it out. 

<details>

  <summary>Your Title</summary>

  <p>The text of the summary.</p>

</details>

Example

Insert a Table

A basic two-columned table for tracking things. 

<table>

  <tr>

    <th>Title 1</th>

    <th>Title 2</th>

  </tr>

  <tr>

    <td>Body 1</td>

    <td>Body 2</td>

  </tr>

</table>

Example

Add a Video

If you have book trailers, vlogs, or other videos, you need to know how to add them!

<video width=”320″ height=”240″ controls>

  <source src=”video link” type=”video/mp4″>

</video>

Example

Learning HTML doesn’t have to be complicated, and these essential tags will help you create the website you’ve always wanted! Check your builder for HTML access, plug in the command you need, and Voila! Custom design at your fingertips. 

If there’s something you need that isn’t on this list, I highly recommend visiting the W3 Schools website. They have workable examples on everything from HTML to Javascript, so there’s a good chance they’ll have what you need! 

Leave a Reply