• Complain

SHANMUGAPRIYAA S - LEARNING WEB DESIGN - HTML5: A Practical Handbook

Here you can read online SHANMUGAPRIYAA S - LEARNING WEB DESIGN - HTML5: A Practical Handbook full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2022, 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.

No cover
  • Book:
    LEARNING WEB DESIGN - HTML5: A Practical Handbook
  • Author:
  • Genre:
  • Year:
    2022
  • Rating:
    4 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 80
    • 1
    • 2
    • 3
    • 4
    • 5

LEARNING WEB DESIGN - HTML5: A Practical Handbook: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "LEARNING WEB DESIGN - HTML5: A Practical Handbook" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

This eBook serves as the practical guide to learn web design by practising HTML.
  • It covers HTML from basics to advanced.
  • It serves as a detailed guide on what to do and how to do.
  • In the process of practising HTML, you will be taught to build a web page using the HTML elements.
    • A sample web page layout is provided
    • Based on the layout, you will be taught to design a web page step by step.
    • Code snippets are provided for practice purpose.
    • Output of code snippets are also provided for reference.
    • Practice through code snippets will give you rich hands-on experience
  • First, you will learn to design a web page for the desktop
  • Then, you will learn how to implement responsive feature to the web page already designed.
When you complete the e-book, you would have mastered HTML as well as Web Designing!
This serves as a self-learning material!
Any interested person who wishes to learn HTML and web design can buy this eBook.
Happy Learning and Happy Coding!

SHANMUGAPRIYAA S: author's other books


Who wrote LEARNING WEB DESIGN - HTML5: A Practical Handbook? Find out the surname, the name of the author of the book and a list of all author's works by series.

LEARNING WEB DESIGN - HTML5: A Practical Handbook — 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 "LEARNING WEB DESIGN - HTML5: A Practical Handbook" 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
ISBN: 978-93-5607-098-1
Learning Web Design - HTML5
A Practical Handbook
By
SHANMUGAPRIYAA S
Title: Learning Web Design - HTML5
Author: Shanmugapriyaa S
Published By: Self-Published
Copyright 2022 Shanmugapriyaa S.
All rights reserved. No portion of this e-book may be reproduced in whole or in part in any form.
Table of Contents
Introduction

Everyone is surfing the web today. Every website or webpage we visit seems to have a similar structure, though they vary by designs, features and in terms of accessibility.
This e-book will elucidate about HTML, which lays the basic structure of todays web. If programming languages are the tools to communicate with systems, then HTML is the communication tool for the web. Whatever we want to see in the web, will be instructed in HTML.
What will you gain on reading and practising this e-book?
  • Get introduced to the structure of web page
  • Understand the need of HTML in web design
  • Learn the HTML elements necessary to build a web page
  • Implement styles and formatting to web page
  • Design a web page using semantic elements
  • Learn to use forms to interact with users
  • Make use of all media (text, image, audio, video) in the web page
  • Make the designed web page responsive
You will start from scratch, from knowing the structure of the web page and on completion, you will be able to design a responsive web page using HTML. A website is a collection of web pages. When you know how to design one page, you can automatically develop a website.
This e-book does not limit to the concepts of HTML, but guides you in practising the same in your system. You can consider this as a self-guiding material to make your learning comfortable.
Let us start learning!

Chapter 1: Introduction to Web Page and HTML5


1.1 Structure of a Web Page

Web designing is all about designing web pages. When these web pages are linked to each other and share a common brand or product or purpose, they become a website.
In this section, you will be introduced to how a web page looks. In order to design a web page, we must know how it looks like and what it needs to be created.
Web pages are the ones you see when you browse something on the web, that is something what the browser shows.
Look at the web page of a sample website: Wikipedia - Home Page
How did this web page come up Open a browser Go to httpswikipediaorg - photo 1
How did this web page come up?
  1. Open a browser
  2. Go to https://wikipedia.org/
  3. Right Click on the page and Choose View Page Source / View Source (Depends on the browser) or Click Ctrl + U
You will see something like this:
This coding is the reason behind the web page look And we call this coding - photo 2
This coding is the reason behind the web page look. And we call this coding language as a markup language.

1.2 Introduction to HTML

What is a markup Language?
Markup language is a coding language which annotates a document to represent content.
There are three types of markup languages:
1. Presentational markup
It is used by text processing systems but the coding is usually hidden from users because such markup languages produce WYSIWYG (What you See Is What You Get) output.
2. Procedural markup
The markup language is embedded in text and this in turn provides instructions to programs to process the text.
3. Declarative markup
This markup language is used to provide labels to process specific instructions on how they should be processed.
Languages like HTML, XML fall into this category. They contain meaningful elements called tags that occur between < and >, which mark the start and the end of the specific parts of content respectively.
Thus, HTML is a markup language and HTML5 is the latest standard.
What is HTML?
HTML stands for Hyper Text Markup Language.
Hyper text is a text that has links and references to other content. In general, web pages don't exist individually. They are either preceded by or followed by some text.
Example : Before you landed on Wikipedia home page, you would have opened the browser and searched for the URL in a search engine, or you would have given the URL directly on the address bar of the browser. Starting from there, it's links after links which takes you to the other web pages.
This kind of connecting content via links is generally termed as Hyper text. HTML is a markup language which is used to create hyper text content. And the result of such content is a web page.
A collection of related web pages becomes a website. Process of designing a website involves designing web pages which in turn needs HTML.
Just have a look at the sample html document:

Content of Web Page is placed here


When you see this document in a browser, the tags are not displayed. But they are used to render the page content as below:
13 Importance of HTML5 Modern web pages are coded using HTML5 Still many - photo 3

1.3 Importance of HTML5

Modern web pages are coded using HTML5. Still many websites are using HTML 4.01 standard.
HTML Versions:
The first HTML was released in 1991 by Tim Berners Lee. The updated versions are:
HTML 2.0 released in 1995,
HTML 3.2 released in 1997,
HTML 4.01 released in 1999,
XHTML released in 2000.
The latest version is HTML5 released in 2014.
Why HTML 5?
The previous standard version of HTML 5 is HTML 4.01. You need to understand why a new standard of HTML was mandatory for the growing web users.
How HTML5 is better than the previous versions?
Advantages for Developers 1 Error Handling Most browsers have support to - photo 4
Advantages for Developers:
1. Error Handling Most browsers have support to parse structurally or syntactically incorrect HTML
2. Improved semantics The code for the layout of the web page is readable and editable with the usage of semantic elements (Explained in Chapter-5: Designing a Web Page)
3. Enhanced support for web application features HTML5 elements provides all functionalities which needed JavaScript or Flash earlier, thus saving time for development. Graphics have become an integral part of HTML5. (Explained in Chapter-7: Graphics and Multimedia in HTML5)
4. Mobile web made easier It makes one design for multiple devices possible. End-users can access web resources at any time in any device. (Explained in Chapter-8: Towards Responsive Web Design)
5. Web local storage to replace cookies Cookies will be expired and cannot store complex data, their capacity is up to 4kb. They slow down the server in transfer of data. But HTML5 provides local storage of web data up to 5MB in the client side permanently until the users themselves erase it. This avoids additional server burden.
Advantages for End-users:
1. Reduces mobile browser crash due to use of new elements of HTML 5
2. Speed loading of content due to responsive feature and also local storage of data
Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «LEARNING WEB DESIGN - HTML5: A Practical Handbook»

Look at similar books to LEARNING WEB DESIGN - HTML5: A Practical Handbook. 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 «LEARNING WEB DESIGN - HTML5: A Practical Handbook»

Discussion, reviews of the book LEARNING WEB DESIGN - HTML5: A Practical Handbook 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.