omputer Basic With HTML Practice
Waseem Mushtaq waseemfour@gmail.com
World WEB Wide
DEVELOPMENT
HTML Programming Language
- HTML stands for hypertext markup language
- This computer language use to create webs pages with different designs, style, color and size.
HTML Web Development
HTML language can be written in user side script and server side script. This language give a motivation to world wide web to activate with web development. This is easy to understand and write. This language can be written on notepad but extension of file name should be in .html (for example abc.html).
Rules to write HTML programmed
- Every web page start with <HTML> tag
- <head> tag if you want to create Title bar name
- <title> tag for title of your web page should be close </title> tag before closing </head> tag
- </head> tag after closing <title> tag
- <Body> All main part of web page are written in <body> tag
- All functions, commands, statements and processes are written in <body> tag
- </Body> Used to finished the main function or body of your web page.
- </HTML> Use when your Web page Completed.
Create a title of the web page
<HTML>
<HEAD>
<TITLE> My First Web Page</TITLE>
<BODY>
</BODY>
</HTML>
Only Title bar name created. When you run the programmed in search engine. After write this html code in note pad you should save file with the name (name.HTML). Then this web page will work in search engines.
Create a web page
<HTML>
<HEAD>
<TITLE> My First Web Page</TITLE>
<BODY>
My First Web Page
</BODY>
</HTML>
Title bar name and web page created when you run the programmed.
No comments:
Post a Comment