HTML Basics

HTML (Hyper Text Markup Language) is the programming language used to markup web pages.

 

You may want to add some basic HTML tags to customize the text display on your online scheduler and on your email templates.

 

With HTML tags, you might want to

 

 

Each HTML tag must be opened and closed. To close a tag, use a forward slash in front of the same html tag you opened with.

 

For example,

 

<b>This sentence will be bold</b> will produce This sentence will be bold

 

Create a Link

 

To create a link to www.yourwebsite.com, the following HTML code can be used:

 

<a href="http://www.yourwebsite.com" target="_blank"> Link Text</A>

 

For example,

 

<a href="https://pickatime.com/help/index.html" target="_blank">User Manual</a>

 

will display as:

 

User Manual

 

Please feel free to email support@pickatime.com if you have any questions about HTML or if you would like a member of our support team to customize the text on your scheduler or in the email templates for you.