Introduction
Introduction
W elcome to Learn HTML and CSS with w3schools. This book is for Web users learn-
ing to create their own Web pages using HTML, the standard tagging language for
the World Wide Web.
w3schools (www.w3schools.com) is one of the top Web destinations to learn HMTL and
many other key Web languages. w3schools’ tutorials are recommended reading in more
than 100 universities and high schools all over the world. This book is a great companion
to the HTML and CSS tutorials on the w3schools site, which were written by Hege Ref-
snes, Ståle Refsnes, Kai Jim Refsnes, and Jan Egil Refsnes.
Like the w3schools online tutorials, this book features a brief presentation of each topic,
trading lengthy explanations for abundant examples showcasing each key feature. This
book, as well as other w3schools books published by Wiley, features straightforward and
concise tutorials on each topic from which the beginning Web developer can easily learn.
All of the book’s content is derived from w3schools’ accurate, user-tested content used by
millions of learners every month.
HTML
With HTML, you can create your own Web site. HTML is the core technology in which
all Web pages are written. This tutorial teaches you everything about HTML. HTML is
easy to learn—you will enjoy it.
What is HTML?
HTML is a language for describing Web pages.
8 HTML stands for HyperText Markup Language.
8 HTML is not a programming language, it is a markup language.
8 A markup language is a collection of markup tags.
8 HTML uses markup tags to describe Web pages.
1
Learn HTML and CSS with w3schools
<html>
<body>
</body>
</html>
Figure I.1
2
Introduction
This icon indicates where you will find further information about a topic that
is covered more thoroughly elsewhere within the book.
TIP Tips provide you with suggested shortcuts and information to help you be
more productive.