Skip to main content

HTML Introduction

HTML Introduction

         HTML :

                         Html stands for “Hyper Text Markup Language”.  HTML is not a programming

Language It is a formatting Language.

       What is HTML?

Ø HTML represents Hyper Text Markup Language

 

Ø HTML is the standard markup language for making Web pages

 

Ø HTML portrays the structure of a Web page

 

Ø HTML comprises of a progression of components

 

Ø HTML components advise the program on how to show the substance

 

Tags and attributes:

                Html commands are known as tags Html tags are surrounded by

            Angle brackets “<tag-name>” this one is called staring tag

            And </tag-name>” this one called a closing tag.

        Example:

                A simple html documents

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

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

</body>
</html>

 

Model Explained

 

1.     The <!DOCTYPE html> presentation characterizes that this report is a HTML5 archive

 

2.     The <html> component is the root component of a HTML page

 

3.     The <head> component contains meta data about the HTML page

 

4.     The <title> component indicates a title for the HTML

 

5.      

6.     The <body> component characterizes the record's body, and is a compartment for all the noticeable substance, for example, headings, sections, pictures, hyperlinks, tables, records, and so forth

 

7.     The <h1> component characterizes a huge heading

 

8.     The <p> component characterizes a section

     What is an HTML Element?

An HTML element is defined by a start tag, some content, and an end tag:

<tag-name>Content...</tag-name>

The HTML element is everything from the start tag to the end tag:

   <h1> Heading</h1>

   <p> paragraph.</p>

Basic HML document Structure:

             <HTML>

         <HEAD> </HEAD>

        <BODY>                          </BODY>


            </HTML>

 

    Display a simple message on the web page:

        1.Open notepad and type the following code


                    <!DOCTYPE html>

<html>

<head>

<title>Page Title</title>

</head>

<body>


<h1>My First Heading</h1>

<p>My first paragraph.</p>


</body>

</html>

        2.Save the file as example.html

       3.Double click the file. The web page will appear in the browser as                below?




Comments

Popular posts from this blog

Features of Operating System

 Features of Operating System All application like games, MS office, Firefox requires a reasonable climate to execute and play out their assignment. The working framework assists the client with associating with the framework without knowing to chip away at the coding languages. It isn't plausible for anybody to utilize any cell phones or PCs without conveying the working framework. It is compulsory to have at any rate one working framework to execute the projects and play out the assignment. So in the straightforward, working framework is characterized as the product that goes about as a line between PC equipment and end-client for simple collaboration to finish the assignment viably.  Highlights of Operating System  There is a wide scope of outstanding highlights in the working framework which is creating step by step. The development of OS is splendid in light of the fact that it is created in 1950 to deal with the capacity tapes and now it was functioning as an interf...

HTML Paragraphs

  HTML Paragraphs: Paragraphs are used to add text in a document. Paragraphs are defined with <p> tag. The use of ending tag </p> is optional. You can't be certain how HTML will be shown.   Huge or little screens and resized windows will make various outcomes.   With HTML, you can't change the presentation by adding additional areas or additional lines in your HTML code.   The program will consequently, eliminate any additional areas and lines when the page is shown Example: ·        Open notepad and type the following code:                 <HTML>                 <BODY>                         <P> This is a Paragraph ...

An Introduction to Computer Graphics and its Applications

An Introduction to Computer Graphics and its Applications Introduction to Computer Graphics: Illustrations are characterized as any sketch or a drawing or an extraordinary organization that pictorially addresses some significant data. PC Graphics is utilized where a bunch of pictures should be controlled or the production of the picture as pixels and is drawn on the PC. PC Graphics can be utilized in advanced photography, film, entertainment, electronic contraptions, and any remaining center innovations which are required. It is an immense subject and territory in the field of software engineering. PC Graphics can be utilized in UI configuration, delivering, mathematical item, movement, and numerous more. In most territory, PC design is a contraction of CG. There are a few apparatuses utilized for the execution of Computer Graphics. The essential is the <graphics.h> header document in Turbo-C, Unity for cutting edge and even OpenGL can be utilized for its implementation. It was d...