HTML programming language

HTML
Is it a programing language or not.
really, i don't care. All i know is it is the easiest to start
with.

so lets begin.
For every skill you need a tool.
For HTML you need your notepad, notepad++,
dreamweavers and such.(if you know more feel free to
share)
to get to your notepad simply search for notepad on
your system and open it.
now that we've done that.type into your notepad the
following,
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
good.
next i will explain what the code says.


HTML is a markup language for describing web
documents (web pages).
<html> this is called a tag. it is a start tag and it tells
the browser what kind of document it is.
for every start tag there is an end tag.
</html> this is an end tag.
HTML stands for Hyper Text Markup Language,
HTML documents are described by HTML tags which i
just showed you.(Those text in brackets)
looking at the example i gave in my previos post. below
is my explanation of the tags.
The DOCTYPE declaration defines the document type
to be HTML
The text between <html> and </html> describes an
HTML document
The text between <head> and </head> provides
information about the document
The text between <title> and </title> provides a title for
the document
The text between <body> and </body> describes the
visible page content
The text between <h1> and </h1> describes a heading
The text between <p> and </p> describes a paragraph
<tagname>content</tagname>
i hope now you understand what tags mean.
they are very important.
Note: To start programming you have to start
programming, i'm saying don't just read, open up your
notepad and write out the code.

Comments

Popular Posts