The full meaning of HTML = Hyper Text Markup Language, This is not a programing language it's markup language. At first you must learn html to be a web developer.
It's very easy to learn and if you can learn html you will be able to create web pages as your own.
|
Hyper Text Mark Up Language |
|
Learn HTML |
What You Need To Learn HTML
Open Only Notepad and be ready to learn if you are advance in Dreamweaver then open it.
There is another types notepad also netbeans, notepad++, coffee cup html editor, sublime text you can anyone.
To Learn HTML what you should know better
Html elements
Html Tag
Html Attribute
ELEMENTS :
Elements are main pont of Html, Elements are created with Tag just see from a paragraph.
examples: paragraph text
<p> - opening paragraph tag
Element Content - paragraph words
</p> - closing tag
In every web page there is 4 essential elements these are HTML,head, title and body elements . open your notepad start menu All Programs > Accessories > Notepad
type <html> Element...</html> here you see <html> this tag for webpage's first tag and at the end you see </html> this is closing tag. without very few tag every tag has closing tag <p>elements</p>.
now save your notepad file as .html format open the saved file in your browser and see you do it.
<head>element
<head>elements refer to the header of a webpage.
<title>element
<title>element stay in <head>, This element is wrote in the opening (<title>) and closing(</title>) tag,
and it's shown as a title in the head of the browser.
<html>
<head>
<title> My WebPage!</title>
</head>
</html>
<body> element
In a web page all data are under body element, what you want to show in your web page type it in body element and closing tag is </body> .
Your First HTML Webpage:
<html>
<head>
<title>My WebPage!</title>
</head>
<body>
Hello World! All my content goes here!
</body>
</html>
Now save this code as .html extension and open the html file in any browser your first web page created.