Saturday 3 January 2015

Web designing using HTML [part 1(a)]

Hi guys! this is my first post on designing your website using HTML. Hope you like it.

                                         HTML

HTML (Hypertext Markup Language )-It is tag based and weak programming language.
  It consists of two parts i.e. Head and Body.

SYNTAX:

<html>
<head>
  <title> </title>
</head>
<body>
</body>
</html>

How to know about the designing of your website before you upload it on web ?

1. Write codes in notepad.
2. Save file with HTML extension i.e.  .html
3. Open file in Internet Explorer or other web browsers (you need not to have internet connection for it).


Web Pages are of two types:

1. Static- using HTML and CSS.
2. Dynamic-using Javascript and JQuery.

Q. What is an HTML file?
= HTML stands for Hypertext Markup Language, which is an application of Standard Generalized Markup Language(SGML). It is a simple language used to define and describe the layout of a webpage. HTML also supports Multimedia and document links.

Q. .htm or .html extension ?
=  When you save an HTML file, you can use either the .htm or the .html extension. I will use .html extension in my examples. Using .htm extension is a bad habit inherited from the past when some of the commonly used software only allowed three letter extensions. Use notepad to save html file.

HTML TAGS

a.) HTML tags are used to mark up HTML elements.
b.) HTML tags are surrounded by the two characters < and > .
c.) The surrounding characters are called angle brackets.
d.) HTML tags normally come in pair like <b> and </b> .
e.) The first tag in a pair is the start tag  and the second tag is the end tag.
f.) The text between the start and end tag is the element content.
g.) HTML tags are not case sensitive i.e. <b> means the same as <B>.

No comments:

Post a Comment