HTML in Telugu Step by Step Tutorials

Web designing tutorials in Telugu - HTML 5 and CSS 3 - Lesson 1



HTML

HTML is the standard markup language for documents(Web Pages) designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets(CSS) and scripting languages such as JavaScript.

What is HTML?

HTML stands for Hyper Text Markup Language. HTML is the standard markup language for creating Web pages. HTML describes the structure of a Web page. HTML consists of a series of elements

HTML elements tell the browser how to display the content. HTML elements are represented by tags

HTML tags are element names surrounded by angle brackets:

<tagname>content goes here...</tagname>

The Declaration

The declaration represents the document type, and helps browsers to display web pages correctly. The declaration is not case sensitive.

The declaration for HTML5 is:

<!DOCTYPE html>

A Simple HTML Document

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>My First Heading</h1>
<p>My first paragraph.</p>

</body>
</html>

Watch the above HTML5 and CSS3 Tutorial to learn HTML and CSS step by step.

CSS

CSS is a language that describes the style of an HTML document. CSS describes how HTML elements should be displayed.

What is CSS?

CSS stands for Cascading Style Sheets. CSS saves a lot of work. It can control the layout of multiple web pages all at once. External stylesheets are stored in CSS files. CSS describes how HTML elements are to be displayed on screen, paper, or in other media.

Why CSS is Used?

CSS is used to define styles for your web pages, including the design, layout and variations in display for different devices and screen sizes.

To Understand CSS step by step, watch the above tutorial video.



Tutorials List