Head Tags for Websites in HTML5
The <head> section is where you can specify the character set, written as charset. The character set enables the browser to know what characters to display. For instance, the letter ä may be displayed as a small rectangle in the browser if the specified character set doesn’t include the special character needed to create the letter ä.
Typically, the charset is sent to the browser via the web server in the Response Header. You can ask your hosting provider whether your web server does this, but to be safe, most designers add it in manually with this tag:
<meta charset="utf-8" />
If you’re creating a website that supports several languages, make sure you use the correct encoding for each language. See the latest list of character sets at Internet Assigned Numbers Authority.
In HTML5, you can continue to use all the meta tags you already know and love, including the meta description, which is important for search engine optimization.
<meta description="Order custom jellyfish aquariums hand-crafted by oceanographer Mark Loos" />
The meta description tag appears in the head area at the very top of your HTML code. Humans never see this text because it’s not displayed on a web page, but meta description tags are often used in search engine results and thus can make a big difference in whether someone clicks on your site or not.
You can add descriptions to any or all of the pages in your site. Although search engines vary, most display only the first 250 characters.
You can add the meta keywords tag, but most search engines are known to ignore keywords in the meta keywords tag, so it won't be described here.

Web Design & Development Glossary
AJAX
asynchronous JavaScript and XML. A technique used in web page development.

Web Design & Development Glossary
API
application programming interface. A set of rules programs use to communicate with each other.

Web Design & Development Glossary
color stop
A special element that indicates a color to be added to a gradient.

Web Design & Development Glossary
FTP
File Transfer Protocol. A network protocol useful for transferring files in a client-server relationship.

Web Design & Development Glossary
HTML
HyperText Markup Language. The predominant language for building web pages.

Web Design & Development Glossary
HTTP
HyperText Transfer Protocol. The primary networking language for the Internet.

Web Design & Development Glossary
PHP
PHP Hypertext Processor. A scripting language that works well within HTML.

Web Design & Development Glossary
socket
A technology that allows remote computers to maintain a persistent connection in order to communicate with each other.

Web Design & Development Glossary
sprite
An graphic object on a web page that will be manipulated in real time.

Web Design & Development Glossary
SQL
Structured Query Language. A programming language useful in managing relational databases.

Web Design & Development Glossary
stateless protocol
An Internet procedure that completely breaks the connection between the client and the server after a transaction, meaning that the next transaction will require an entirely new connection.

Web Design & Development Glossary
Telnet
A network protocol useful in interactive, text-oriented communications.

Web Design & Development Glossary
W3C
World Wide Web Consortium. The organization that sets international standards for the World Wide Web.