• Complain

Faithe Wempen M.A. - Start Here! Learn HTML5

Here you can read online Faithe Wempen M.A. - Start Here! Learn HTML5 full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2012, publisher: Microsoft Press, genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Faithe Wempen M.A. Start Here! Learn HTML5
  • Book:
    Start Here! Learn HTML5
  • Author:
  • Publisher:
    Microsoft Press
  • Genre:
  • Year:
    2012
  • Rating:
    4 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 80
    • 1
    • 2
    • 3
    • 4
    • 5

Start Here! Learn HTML5: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Start Here! Learn HTML5" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Ready to learn HTML5 programming? Start Here! Learn the fundamentals of programming with HTML5and begin building your first standards-based web pages from the ground up. If you have absolutely no previous experience, no problemsimply start here! This book introduces must-know concepts and getting-started techniques through easy-to-follow explanations, examples, and exercises. Heres where you start learning HTML5Create a web site using HTML5 tags in a simple text editor Use semantic tags to make your pages easier to layout and find Draw in HTML5 using the canvas element Embed audio and video in your web pages Get HTML5 to work in older browsers Develop your future skills in web design

Faithe Wempen M.A.: author's other books


Who wrote Start Here! Learn HTML5? Find out the surname, the name of the author of the book and a list of all author's works by series.

Start Here! Learn HTML5 — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Start Here! Learn HTML5" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Start Here! Learn HTML5
Faithe Wempen
Published by Microsoft Press

To Margaret

A Note Regarding Supplemental Files

Supplemental files and examples for this book can be found at http://examples.oreilly.com/9780735669826-files/. Please use a standard desktop web browser to access these files, as they may not be accessible from all ereader devices.

All code files or examples referenced in the book will be available online. For physical books that ship with an accompanying disc, whenever possible, weve posted all CD/DVD content. Note that while we provide as much of the media content as we are able via free download, we are sometimes limited by licensing restrictions. Please direct any questions or concerns to .

Introduction

H ypertext Markup Language (HTML) is the basic programming language of the World Wide Web. Its the common thread that ties together virtually every website, from large-scale corporate sites like Microsofts to single-page classroom projects at the local grade school.

In simple terms, a webpage (or HTML document) is a plain text file that has been encoded using HTML so that it appears nicely formatted in a web browser. Heres what HTML means, word-by-word:

  • Hypertext Text that you click to jump from document to document. This is a reference to the ability of webpages to link to one another.

  • Markup Tags that apply layout and formatting conventions to plain text. Literally, the plain text is marked up with the tags.

  • Language A reference to the fact that HTML is considered a programming language.

Dont let the phrase programming language intimidate you. Creating a webpage with HTML is much simpler than writing a computer program in a language like Microsoft Visual Basic or C++. You can create a simple webpage in just a few minutes.

Tip

When people think of computer programming, they usually think of writing a compiled program. A compiled programming language runs the human-readable programming code through a utility that converts it to an executable file (usually with an .exe or .com extension), which is then distributed to users. In contrast, HTML is an interpreted programming language. That means the program is distributed in human-readable format to users, and the program in which it is opened takes care of running it. The HTML code for webpages resides in files. Each time your web browser opens a webpage, it processes the HTML code within the file.

This book teaches beginner-level HTML in a rather fundamentalist way: by creating plain text files in Notepad. There are so many good website creation programs on the market nowadays that you may be wondering why this book takes this approach.

Simply put, its because doing your own coding is the best way to learn HTML. In this book youll build a website from the ground up, writing every line of code yourself. Its slower and not as much fun as a fancy graphical program, but its great training.

The last chapter of this book shows how to use Microsoft Expression Web to create web content, and you may eventually choose to move to a program like that. However, you will be a much better web designerand understand what is going on in design programs much betterif you tough it out with Notepad in the beginning.

Who Should Read This Book

This book is designed for non-programmers who are brand-new to HTML. It doesnt assume any previous web design or programming knowledge of any kind, so its perfect for home hobbyists and self-educators, as well as high school and college classrooms.

Assumptions

This book expects that you have basic computer literacy skills and you can use the operating system on your PC. The detailed procedures for this book were written with Windows developers in mind, but the general information applies to building webpages on any operating system. You should know how to manage files, run programs, and access the Internet.

Im also assuming that if youre reading this book, you are actually interested in learning HTML and not just knocking out a quick webpage only to never think about HTML again. This book provides you with a solid foundation in HTML that youll be able to draw from for years to come.

Who Should Not Read This Book

This book is not for experienced programmers who already have significant HTML knowledge and are just interested in updating their skills for HTML5. This book doesnt cover many of HTML5s advanced features that experienced web developers are likely to be interested in learning about; instead, it provides a solid foundation for the beginner.

Organization of This Book

This book is divided into three sections, each of which focuses on a different aspect of webpage development. , explains how to create intuitive page layouts and navigational aids as well as how to add special elements such as forms and multimedia.

Conventions and Features in This Book

This book presents information using conventions designed to make the information readable and easy to follow.

  • Each exercise consists of a series of tasks, presented as numbered steps (1, 2, and so on) listing each action you must take to complete the exercise.

  • Boxed elements with labels such as Note provide additional information or alternative methods for completing a step successfully.

  • Text that you type displays in boldface . For example, if you are instructed to type some text to an existing block of code, the text you are to type is displayed in bold.

  • Glossary terms marked in the text are explained in the glossary at the end of the book.

System Requirements

You will need the following hardware and software to complete the practice exercises in this book:

  • A computer running the operating system of your choice. The examples in this book use Windows 8, but you can use any Windows, Mac, Linux, or UNIX operating system.

  • A text-editing program. The examples in this book use Notepad, which comes with all Windows versions.

  • One or more web browsers. The examples in this book use Internet Explorer 10. You will probably want at least one other browser in which to check your work, because different browsers might display content in different ways.

  • An Internet connection to download the practice files.

Code Samples

Each chapter includes exercises that let you interactively try out new material learned in the main text. All files you will need to complete these exercises can be downloaded from the following page:

http://go.microsoft.com/FWLink/?Linkid=263540

Follow the instructions to download the 9780735669826_files.zip file.

Installing the Code Samples

Follow these steps to install the code samples on your computer so that you can use them with the exercises in this book.

  1. Unzip the 9780735669826_files.zip file that you downloaded from the books website (name a specific directory along with directions to create it, if necessary).

  2. If prompted, review the displayed end user license agreement. If you accept the terms, select the accept option and then click Next.

Note

If the license agreement doesnt display, you can access it from the same webpage from which you downloaded the 9780735669826_files.zip file.

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Start Here! Learn HTML5»

Look at similar books to Start Here! Learn HTML5. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Start Here! Learn HTML5»

Discussion, reviews of the book Start Here! Learn HTML5 and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.