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

Computer Network Architecture

Computer Network Architecture  PC Network Architecture is characterized as the physical and sensible plan of the product, equipment, conventions, and media of the transmission of information. Essentially we can say that how PCs are coordinated and how assignments are apportioned to the PC.  Types of network architectures are used: Peer-To-Peer network Client/Server network Peer-To-Peer network: A Peer-To-Peer network is an organization wherein every one of the PCs is connected along with equivalent advantages and obligations regarding preparing the information.  The Peer-To-Peer network is helpful for little conditions, generally up to 10 PCs.  The distributed organization has no devoted workers.  Extraordinary consents are appointed to every PC for sharing the assets, yet this can prompt an issue if the PC with the asset is down.  Computer Network Architecture  Computer Network Architecture is characterized as the physical and sensible plan of the pro...

Basics of Automata Theory

 Basics of Automata Theory  What is Automata Theory?  Introduction Automata Theory is an energizing, hypothetical part of software engineering. It set up its foundations during the twentieth Century, as mathematicians started creating - both hypothetically and in a real sense - machines that imitated certain highlights of man, finishing estimations all the more rapidly and dependably. The word machine itself, firmly identified with "mechanization", signifies programmed measures doing the creation of explicit cycles. Essentially expressed, the automata hypothesis manages the rationale of calculation concerning straightforward machines, alluded to as automata. Through automata, PC researchers can see how machines figure works and tackle issues and all the more significantly, how it affects a capacity to be characterized as calculable or for an inquiry to be depicted as decidable.  Robots are unique models of machines that perform calculations on a contribution by trave...

Highlights/Features Of Computer Network

 Highlights/Features Of Computer Network Highlights Of Computer organization  In this article guide, we will talk about the highlights of a Computer Network  A rundown Of Computer network highlights is given underneath.  Execution  communication speed  Document sharing  Back up and Rollback is simple  Programming and Hardware sharing  Security  Versatility  Unwavering quality  Execution:  The performance of a Computer network is estimated as far as reaction time. The reaction season of sending and getting information from one hub (PC in a PC network regularly alludes to a hub) to another ought to be negligible.  Information Sharing: One of the motivations behind why we utilize a PC network is to divide the information among various frameworks associated with one another through transmission media.  Reinforcement:  A PC network should have a focal worker that keeps the reinforcement of all the information tha...