Home > Articles > Home & Office Computing > The Web/Virtual Worlds/Social Networking

This chapter is from the book

This chapter is from the book

HTML Basics in WordPress

There are lots of good books about HTML out there, but using HTML in the WordPress environment is unique. Many of the problems that make using HTML a hassle are handled for you, and the WordPress environment can teach you HTML as you work.

In this chapter, we use WordPress to demonstrate the basics of HTML. Once you have a feel for HTML itself and how it works in the WordPress environment, you can use other HTML and XHTML resources to go further, applying what you learn in your WordPress blog as you go.

The key tool we'll use is the Visual and HTML tabs in the WordPress Post editor. (The Post editor is the same for adding new posts, editing existing posts, and creating pages—standalone web pages you can integrate into your blog.)

The formatting that WordPress makes available to you on the Visual tab is the formatting that's made available in the most basic HTML, supported by the widest range of browsers across the widest range of systems.

The Post editor has tabs that allow you to work in Visual mode or HTML mode. Visual mode is what the user sees when they visit your blog. In HTML editors, Visual mode is often referred to as WYSIWYG, pronounced "whizzywig," for What You See Is What You Get.

HTML Tags

The basics of HTML can be unraveled by looking closely at its name: Hypertext Markup Language.

A markup language is a set of codes inserted within a flow of text that describe how the text should be formatted, or that give other instructions. A markup instruction in HTML is called a tag.

A typical tag looks like this: <b>. The angle brackets indicate that the text inside them isn't to be displayed—instead, it's an instruction.

Many tags come as beginning and ending tags, like this:

The last word in this sentence is displayed in <b>bold</b>.

That's how the text would look on the HTML tab. On the Visual tab, or in your blog after you publish, the same sentence would appear like this:

The last word in this sentence is displayed in bold.

So in HTML, you format a word as bold by surrounding it with the beginning bold tag, <b>, and the ending bold tag, </b>. Similarly, you use the <i> and </i> tags around words or characters that you want to display in italic.

HTML was developed in accordance with a strong set of ideals, alongside strong practical concerns, which sometimes conflicted.

For instance, HTML is meant to convey meaning, not formatting. The bold and italic tags are formatting tags. They're tremendously popular because each "does what it says on the tin," across a wide range of devices to boot.

The meaning behind the styles might be different from their look. An HTML purist would prefer to use tags that specify the meaning rather than the formatting. So, to follow along with the theory behind HTML, you should use <em> to emphasize text and <strong> to make it appear strongly. What this means in practice is that HTML purists use <em> for italic and <strong> for bold, along with the corresponding ending tags, even though the pure tags are much harder to remember and take longer to type.

CSS is meant to be a triumph of the purist approach because it separates meaning from the specifics of how something appears. In practice, CSS just gives you the tools to spend far more time working on the details of appearance, often well beyond the importance of the underlying text.

So that's the markup language part of HTML. Figure 6.1 shows the HTML source code underlying a post on gvDaily.com. To complete our look at the words behind the acronym HTML, let's look at the HT, or Hypertext, part.

Figure 6.1

Figure 6.1 You can easily view the source code behind any web page.

What distinguishes HTML as a Hypertext Markup Language is the use of additional tags that refer to hypertext links. For instance, here's the HTML code to link some text to the WordPress.com home page:

To go to WordPress.com, click <a href="http://www.wordpress.com">here</a>.

This code causes the word here to become a hypertext link. By default, the word here is displayed in blue and underlined. When the user clicks on it, the contents of the browser change from the page with the sentence in it to the WordPress.com home page.

The a in the tag stands for anchor. (Anchor management is important in complicated websites.)

The href in the tag stands for hypertext reference. A chunk of text that isn't a tag, but is used in a defined way within a tag (as is done here), is called an attribute. Hypertext means that text can exist in various files, on various web servers.

The great thing about learning and using HTML in the WordPress.com environment is that all sorts of hassles are handled for you. You work at the level of individual posts; WordPress handles making up the complete page by putting your post within a theme, as described in Chapter 3. WordPress also hosts your files.

This saves you from one of the biggest hassles in web publishing. Traditionally, web developers create web pages on their own machines. Once everything's right, the web developer then transfers the web page to a web server.

During this transfer, all sorts of things can go wrong because the files go to a different machine, with a different folder structure. The links between files are easily disrupted by the transfer, and all sorts of hassles ensue.

WordPress.com handles all this through a very controlled process. You never upload the title and text of your post at all; that's handled by the Add/Edit Post page. For graphics and, if you choose to use them, audio and video files, you upload files one at a time using another tool, and only then use the files in your blog. You never have to worry about creating a set of link relationships on one machine, then transferring them to another machine. (Automattic might move your blog around on their servers, but you never see this happen.)

If you move to a WordPress software-based blog, you take on these hassles. Different hosting providers might protect you from them to a greater or lesser extent, but you're never quite as protected and carefree as in WordPress.com. However, on a WordPress.org blog, you do have much more power to do things your way.

The Visual and HTML Tabs

Let's take a close look at the Visual and HTML tabs to get a feel for the differences. Figure 6.2 shows the editing area for both.

Figure 6.2

Figure 6.2 The Visual and HTML tabs do most of the same things in different ways.

The buttons available on the Visual tab are a close match for those on the HTML tab. Table 6.1 shows the correspondence between one and the other. The first section shows the main, or top, line of editing buttons; the second section, the second line of editing buttons, only appears when you click the Kitchen Sink button on the first line.

Table 6.1. Buttons for Visual and HTML Tabs

Visual Tab

HTML Tab

Meaning

Image

img

Insert image

B

b

Bold

I

i

Italic

ABC

del

Strikethrough

Bullets

ul

Unordered list (bulleted list)

Numbers

ol

Ordered list (numbered list)

li

List item (bulleted or numbered list)

Left-align

Text aligned left, ragged right

Center

Text centered

Right-align

Text aligned right, ragged left

Link

link

Hyperlink

Break link

Remove hyperlink

More tag

more

Provide special link to the complete post

Spell-check

Check spelling

Full-Screen mode

Expand to editing window only

Show/hide kitchen sink

Display/hide additional formatting options

Paragraph pull-down (includes Address, Preformatted, headings 1–6)

code

Various text formatting options

Underline

ul

Underlined text (can confuse readers by looking like a link)

Centered

Centered image

Text color

Change the display color of text (can confuse readers who think the text is a link)

Text import

Bring in text from text editor

Word import

Bring in text from Microsoft Word

Remove formatting

Change text to plain, unformatted text

Outdent

Reverse any indenting

Indent

Indent the text by shifting the left margin to the right

Undo

Reverse most recent change

Redo

Re-instate most recent change

Help

Go to Codex (note that this is not very specific help)

ins

Inserted text, that is, to note updates

lookup

Look up item in dictionary

close tags

Add ending tags to open items, but check where WordPress puts them

Character Formatting

The character formatting commands that are made available in WordPress are the ones most widely supported in HTML: bold, italic, and—a bit of a latecomer to HTML—strikethrough.

Figure 6.3 shows text on the Visual tab of WordPress using the bold, italic, and strikethrough formats. The beginning words of each sentence are in italic—How, Where, What, Why. The word you is repeated in bold four times. The word so is shown in strikethrough.

Figure 6.3

Figure 6.3 Formatting is easy to understand on the Visual tab.

Figure 6.4 shows the same text on the HTML tab. You can see the HTML codes that cause the formatting on the Visual tab to be displayed.

Figure 6.4

Figure 6.4 Formatting is a bit trickier on the HTML tab.

Now, what's going on? Table 6.2 shows the text in visual and HTML modes for comparison.

Table 6.2. Visual Versus HTML Text

Visual

HTML

How are you?

<em>How</em> are <strong>you</strong>?

Where are you?

<em>Where</em> are <strong>you</strong>?

What are you doing?

<em>What</em> are <strong>you</strong> doing?

Why are you so late?

<em>Why</em> are <strong>you</strong>
<span style="text-decoration:
line-through;">so</span> late?

Even though WordPress displays the bold button as B on the Visual tab and b on the HTML tab, it actually implements bolding with the <strong> tag, not the <b> tag. This is a combination of practicality—no one would know what WordPress meant if they showed strong in the button—and purity in the use of HTML.

Similarly, the <em>, or emphasis, tag is used for italic.

Strikethrough is implemented using CSS via the <span> and </span> tag pair. These tags are like a red flag to let you know that classic, basic HTML is being left behind. They mean something like this: "The span of text between these tags has shared characteristics," which are then defined within the opening tag. In this case, the style attribute defines formatting, called text-decoration, which is line-through to produce the strikethrough effect. It's understandable that WordPress uses CSS for this; the strikethrough effect is implemented in HTML as <s>, <st>, or <del> (for delete) in various versions of HTML.

Still, the pure version is much harder to read. If you get some experience working with HTML, you learn to ignore the HTML tags when you want to read the underlying text. It's much harder to ignore <strong> when you're scanning in this way (because it's actually a word) than <b>. The <em> tag is both reminiscent of Auntie Em in the Wizard of Oz, or an em dash if you work with typography, and easy to confuse with <strong>.

Here's the same text with the more commonly used tags, so you can see how much clearer a less pure version of HTML is to read:

<i>How</i> are <b>you</b>?
<i>Where</i> are <b>you</b>?
<i>What</i> are <b>you</b> doing?
<i>Why</i> are <b>you</b> <st>so</st> late?

WordPress will accept the more commonly used, and easily understood, tags, such as <b> and <i>, if you type them into the HTML tab, or copy them in from a tool that uses them.

If you look at the result on the Visual tab, then return to the HTML tab, the tags will be changed to <strong> and <em>. Less widely supported tags, such as <st>, are simply dropped; you'll have to notice they're missing and reenter them in a WordPress-approved form on the HTML tab, or by using the buttons on the Visual tab.

List Formatting

It's good to understand the list formatting in WordPress because lists are very convenient (for you and your readers), but also a frequent source of frustration with HTML. Browsers tend to display lists in ugly ways—with a wedge of blank space in front of the first list item and no spacing at all between items.

It's quite common for HTML maestros to use all sorts of tricks to make lists come out better and for CSS experts to use CSS, in an approved way, to get excellent results.

HTML implements lists by specifying the type of list up front, then surrounding each line in the list with tags to show it's a list item. This makes it easy to switch between the two types of lists that HTML supports:

  • Unordered list—Unordered means "it doesn't matter what order is used," but HTML always displays the items in the order you provide them. Unordered lists always show up as bulleted lists. However, calling them unordered instead of bulleted is part of the preference in HTML for specifying meaning, not specific formatting details.
  • Ordered list—Ordered means "the order is important," and browsers always display ordered lists as numbered lists.

The group of items in unordered (bulleted) lists are surrounded by the <ul>/</ul> tab pair. Each list item is preceded and followed by the <li>/</li> tag pair, with li standing for list item.

In ordered (numbered) lists, the items are surrounded by the <ol>/</ol> tag pair. Just as with unordered lists, each list item is preceded and followed by the <li>/</li> tag pair.

Table 6.3 shows two lists as they appear on the Visual tab and the HTML tab.

Table 6.3. Visual Versus HTML Lists

Visual

HTML

These are a few of my favorite Shakespeare quotes:

These are a few of my favorite
Shakespeare quotes:
<ul>

All the world's a stage, And all the men and women merely players.

<li> All the world's a stage, And all
the men and women merely players.</li>

The evil that men do lives after them; The good is oft interred with their bones.

<li> The evil that men do lives after
them; The good is oft interred with
their bones.</li>

The course of true love never did run smooth.

<li> The course of true love never did
run smooth.</li>
</ul>

From first to last, my favorite Shakespeare quotes are:

From first to last, my favorite Shakespeare quotes are:

<ol>

The little foolery that wise men have makes a great show.

<li> The little foolery that wise men have makes a great show.</li>

The web of our life is of a mingled yarn, good and ill together.

<li> The web of our life is of a mingled yarn, good and ill together.</li>

There is nothing either good or bad, but thinking makes it so.

<li> There is nothing either good or bad, but thinking makes it so.</li>

</ol>

Note that the formatting for the lists looks very similar; the only difference is the use of the <ul>/</ul> tag pair for one and the <ol>/</ol> tag pair for the other. When editing HTML, it's easy to change from one type of list to the other just by changing two u's to o's or vice versa.

Also note how the list items in the column of HTML code are indented, as they are in WordPress, for both the unordered (bulleted) and ordered (numbered) lists. This indenting has nothing to do with the HTML code itself; it's called "prettyprinting," whether it's used for onscreen display or a physical printout. Prettyprinting is used with various kinds of code to make it easier to work with. Some HTML editors have very elaborate prettyprinting, including further use of indentation, colors, fonts, text styles (bold, italic, and so on), and any other ploy that helps make it clearer what's going on in all that code.

You can see that, even in this brief example, the HTML code takes up a lot of space on the page. The same is definitely true onscreen. A big part of the reason that WordPress is a poor HTML editor is the limited screen space available for the contents of the HTML tab in the Shared-Screen mode of the Post editor.

Linking

Linking is the creation of hyperlinks in HTML code. Hyperlinks are at the very core of the Web.

Specifying a link can be quite difficult and links are easy to make a mistake in or to have break even after they've been working for a while. Luckily, links in WordPress are simplified, without taking away much from what you can do. And you can always dive into the HTML and make a link as complex as you want.

For light work with a WordPress.com or WordPress.org-based blog, though, the main reason for understanding linking is that it's one of the main reasons you'll work in HTML rather than on the Visual tab. This is for two reasons:

  • Many websites give you HTML to add to your page if you want, for instance, to include a video. The Google Voice website gives you HTML to include a Call Me button for your Google Voice number. AltaVista gives you code for various Translate This buttons for your blog, and so on.
  • Linking is also useful for the Text widget that we describe later in this chapter.

There are three forms of links worth being familiar with:

  • A link to a home page—An example is as follows:

    Visit <a href="http://www.wordpress.com">WordPress</a>.

    HTML is doing a lot of the work for you here. When you give a domain name as the link destination, a web browser looks for a web page called any of the following:

    index.htm
    index.html
    home.htm
    home.html

    These web page names are privileged in that you don't have to enter them for a web browser to look for them. You don't even need to know which one of the four forms the website's author used; any of them will do.

  • A link to any web page—An example is as follows:

    Visit the new Great Stuff list at <a href="http://www.wordpress.com/greatstuff/latest.htm">WordPress</a>.

    This takes you to the WordPress.com site, into a folder called greatstuff, and to a web page called latest.htm. (Web page files always end in .htm or .html.)

  • A link within a web page—An example is as follows:

    Visit the new Great Stuff list at <a href="http://www.wordpress.com/greatstuff/latest.htm#item20">WordPress</a>.

    As with the previous example, this takes you to the WordPress.com site, into a folder called greatstuff, and to a web page called latest.htm. It then goes one step further and scrolls down to a special type of tag called an anchor within the file. (If the anchor is missing, the link takes the user to the top of the page.) The anchor takes this form:

    <a name="item20"><h4>Item 20</h4></a>

    In this case, the anchor is around a header, as is commonly the case. For anchors of this type, the <a>/</a> tag pair doesn't have to surround anything, as it marks a point in the file rather than a designation. However, some of us like to surround text with the tag pair so that if things are moved around, the intended destination of the anchor is clearer.

These are the kinds of links that you'll need for the Text widget, described later in this chapter. For links within web pages, you can add anchor tags to your own blog posts or static pages, and you can look in the HTML code for a web page, as described previously, to find existing anchor tags to which you can link.

The More Tag

WordPress includes a WordPress-only tag called More that shows how HTML works—and how WordPress uses it to make your life as a blogger easier.

The home page of your blog shows your most recent posts. However, if a post has a More tag in it, only the part before the More tag displays. The part after the More tag only shows if the user links to it, either from your blog home page or somewhere else.

The More tag looks like this:

<!--more-->

As far as HTML is concerned, any tag that begins with the exclamation point character, !, is a comment. Web browsers ignore such tags, so you can put remarks to yourself in them. Comments are often used for notes to support project management for website creation and updating, such as a list of changes to the site.

However, WordPress.com is not just any website. It can set rules by which, for instance, comment tags can be analyzed and treated as meaningful if they meet certain rules. The More tag is a specialized comment tag.

You can insert a More tag in your post at any point you like to make your blog home page act the way you want it to.

HTML Editing in WordPress

The Post editor is quite good as a WYSIWYG editor and really, really poor as an HTML editor. Here's why:

  • As a WYSIWYG editor (that is, on the Visual tab), the Post editor offers buttons for HTML features, easy integration of content from text editors or Microsoft Word, spell-checking, and a Full-Screen mode.
  • As an HTML editor, the buttons are confusing and, much worse, there is no Full-Screen mode. HTML eats screen space, and being forced to work in the narrow confines of the Shared-Screen mode of the Administration area makes it almost impossible to see what you're doing. The lack of basic capabilities, such as Find and Replace, really shows in HTML editing as well.

Because the Post editor is a poor HTML editor, the ability to use WordPress for HTML work is limited. If you need to do extensive HTML work with your WordPress blog, you should work in a different editor, and cut and paste between the other editor and the Post editor.

The possibilities for becoming confused and losing time or losing work when you're switching back and forth between editors are obvious, but manageable.

There are a lot of HTML editors out there for different platforms, and there's no one universal standard. A wide range of editors appeared when the Web exploded in popularity in the 1990s; some editors that were popular then are no longer supported or receive minimal support, a picture which changes year by year. For example, the widely popular FrontPage tool from Microsoft has been orphaned—withdrawn from sale and left without updates. Microsoft replaced it with a much more technically oriented set of tools, called the Microsoft Expression Studio, that competes with the widely respected, but also complex, Dreamweaver suite from Adobe.

To find an HTML editor for your computer type, search online for reviews. You can find adequate basic editors as freeware or shareware, then upgrade to paid software if and when your needs dictate.

What Tags Can I Use?

If you know something about HTML, you'll be wondering just what tags you can use. If you use external resources to learn more about HTML, you'll soon be wondering the same thing.

Here are the tags you can use that we've already mentioned (though WordPress might convert them to other tags): a, b, blockquote, br, del, div, em, li, ol, p, s, span, strike, strong, and ul.

Here are some additional tags, with a word or two of description so you can follow up on the interesting ones: font (yes, you can specify fonts in your blog!), h1, h2, h3, h4, h5, h6 (headers, from biggest to smallest), hr (a horizontal rule or line), img (insert an image using similar rules as for a web link), and table (powerful and potentially dangerous, as tables often work differently on different browsers).

Just for completeness, here are the remaining tags that are supported (several of which are dependent on the table tag): address, abbr, acronym, big, caption, cite, class, code, col, dd, dl, dt, i, ins, kbd, pre, q, sub, sup, tbody, td, tfoot, tr, tt, and var.

We mentioned previously that WordPress uses XHTML. What does this mean to you as you work directly in HTML?

Not that much because most of the additional complexity of XHTML comes at the level of the overall page and its major divisions (head, body, and so forth), which WordPress handles for you.

Here are a few key rules to follow to make your code work as XHTML:

  • Use all lowercase for HTML—This was always the "cool kids'" way to write HTML code, but in XHTML it's a rule.
  • Nest tags properly—If you surround a word with the <b>/</b> tag pair, then make the same word the beginning of a link, the <a> and </a> tags should surround the <b> and </b> tags, not be intermixed with them.
  • Use tag pairs—In particular, always use the <p>/</p> tag pair, not the <p> tag by itself.
  • Always put attribute values in quotes—Before, you might have worried whether a browser was too stupid to tell the difference between an attribute and an argument. Under XHTML, the answer is officially "yes." So format a link, for instance, this way:Come to the <a href="www.metaverse.wordpress.com">Metaverse</a> for more.

If you follow these simple rules, your HTML code should work well in either an HTML or, as with WordPress, an XHTML environment.

As with HTML tools, there are many sites about HTML and XHTML; some are out of date, some might not be technical enough, some might be too technical, and some might be just right for you. Search for the tag name you're wondering about, along with the keywords "HTML tag" to find a variety of sites that will define the tag name for you. You'll soon find a site you like.

Here are tags you can't use, for security reasons: embed, frame, iframe, form, input, object, and textarea.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020