Tuesday, August 2, 2011

HTML

HTML is the first learning process is usually done by web programmers. And to learn HTML, so you have the ability to create static Web pages. So what do you want a site that has the ability to interact with visitors in more intense. It  s when you start learning PHP. After reading the PHP so you can continue to learn MySQL, PHP to add functionality.

I can explain briefly consist of the following. HTML is required primarily for the Web interface, PHP, to add the ability to interact with visitors and the ability to store data are supported by MySQL Complete has everything. But of course, the network programming is not limited to them. In addition to learning HTML, PHP and MySQL, of course you can also learn another scripting language, which will further beautify the appearance of the parties and facilitate the process of creating web pages that you want the CSS and JavaScript. You may also need to increase their skills in creating a project area manufacturer of view of various applications such as Dreamweaver and FrontPage, as well as learn the applications of imaging, such as fireworks and Adobe.

But for now we will concentrate on materials for study, where all the HTML programming.
I must say that even if you master a variety of programs that do web design, but in the end, but still has the ability to perform alias practical manual programming to perform different control in the program.
I want to learn and practice?.

Ready? OK, let  e start learning HTML.
Introduction to HTML

What dimkasud an HTML file?
- HTML stands for Hypertext Markup Language
- HTML file is a text file that contains the code
- Tags tell the browser how to display
- An HTML file must have the extension htm or html
- HTML files can be created using a text editor you use

Want to try?
Start by opening Notepad (in Windows XP for those who never click on Start, Programs, Accessories, Notepad).
Type the following text:

 <html>
<head>
<title> Title Page </ title>
</ Head>
<body>
This is my first page. <b> text is bold </ b>
</ Body>
</ Html>

Save with the name  mypage.htm  (.. Do not forget to add quotes in the file name if you forget the name of the file will use the default extension Txt mypage.htm August. txt).
Open the browser (eg Internet Explorer). Click File, Open, browse and select files mypage.htm research can be done. Click OK, and your browser will display the page you created earlier.

Simple right? Or do you still confused? Ok, as explained in the example above.

Each tag flanked by sign smaller and larger. You can see that the first tag is <html>. HTML tags are usually always have a partner who has the same tag with a little extra slash "/", and you can see a couple of <html> at the end of the script tag is </ html>.
<html> Tag tells the browser that this is the beginning of an HTML document. Tag a partner that is </ html> states that this is the end of the HTML document.
The text between <head> and </ head> is the text of the header information. Header information is not displayed on the browser window.
The text between <title> is the title of your document. This title will be displayed in the caption browser (see at the top right of your browser.)
The text between the tags <body> is the text that will appear in your browser window.
And lastly, the text between <b> and </ b> will be shown in bold.

Now, with this explanation begins must nodded and felt, was to learn HTML easily.
Now we see the expansion. As already presented in the beginning, we can create an HTML file with two such extensions. Htm to html. Now extensions. HTM is designed for the operating system of the past, which supports only three letter extension. While the extension. Html will be safer to use if operating systems and applications more clearly shows that this is an HTML file.
For the record, each of you make a change in the HTML file, please update your browser to see changes in your vision.

0 comments:

Post a Comment