Make HTML Website - Basic HTML
how do I make a website? There are several stages and steps
we need to take to create a good website. As with the CMS and instant instant
blogs that we live register it in the blog service providers like Blogspot,
Wordpress, etc.. Or CMS like Joomla, Mambo, etc. that just install it like.
Here we learn the manual web (creating websites manually) although it is still
simple and static. To create a website first of all we have to learn the HTML
language is a "programming language" that allows us to create web
pages that can be displayed in a browser (Chrome, Firefox, Internet Explorer,
Netscape, Opera, etc).
start from the first step is to learn the HTML language.
_ WEBSITE
Today, almost all Web documents created with HTML (Hypertext
Mark-up Language). Although you could just create a web page (web page) without
the slightest understanding of HTML, Highly recommended even almost required,
to understand the language of HTML. For the first step for those who aspire to
have their own website is to learn HTML.
HTML (Hypertext Markup Language) is a programming language
used to write the document format that can be used in the Web. With HTML, ASCII
text (* txt files) can be polished (at-mark-up) with specific codes called tags
to be an HTML document (file * .htm or * html). Therefore, to create an HTML
document, you can use all the usual text editor program, ranging from Notepad
to Dreamweaver. For simplicity, we use the Dreamweaver program.
- HTML stands for Hyper Text markup Language
- An HTML file is a text file that contains the markup tags
- The markup tags tell the browser how to display a page
- HTML file must have the extension htm or html
- HTML file can be created using a plain text editor you
use.
HTML CODE RECOGNITION
Basic >> New >> Page >> HTML, then set the
mode to Code
dreamweaver tutorial
Here you will find a tag - the tag of this kind:
<HTML>
</ HTML>
explanation:
Each line above is called a tag. Tag is the code that is
used to re-mark-up (polish) ASCII text into HTML files. Each tag enclosed with
pointy brackets.
There is an opening tag <HTML> and there is the
closing tag </ HTML> are marked with a slash (forward slash) before the
start of his writing.
Tag above gives that will be written between the tags is the
content of an HTML document. You should know that the html tags can be written
in capital letters or small letters. That is, writing <HTML> or <html>
or <html> the same result. However, it should always be remembered that
writing incorrect tag though only one character will affect your HTML document,
could even result in your HTML document can not be displayed in the browser.
Now we will move on to the next tag.
<HTML>
<BODY>
</ BODY>
</ HTML>
The contents of the actual HTML document is written between
the <BODY>. Try writing:
<HTML>
<BODY>
This paper will appear in the browser
</ BODY>
</ HTML>
Now save the file by clicking the File menu and then Save.
Well, look at your work first by pressing the F12 there will appear the words
"This paper will appear in the browser." no HTML tags. Now you may begin to understand
the workings of HTML and markup tags, that's how it works, so that appears in
broser just writing alone, while the tag is only an order for the browser to
display our command.
Is the BODY tag function is simply a marker of the body or
contents of web documents? No, in this BODY tag we can insert a variety of
attributes that will affect the format or display a web page as a whole. On
this occasion we take the example of how to change the background color and
text color of a web page by adding attributes to the BODY tag.
<HTML>
<BODY BGCOLOR = "yellow" TEXT =
"red">
This paper will appear in the browser.
</ BODY>
</ HTML>
Keep back this file (click File and then Save). To see how
the results press F12 or click the Refresh button on the browser or can be by
pressing the F5 key on the keyboard. Thus, the browser will recall that the
file is now changing. It will behold the results:
dreamweaver tutorial
Keep in mind that determination could be the color of the
HTML color name (in English) and can also be color-coded. The color code is
written in hex format like #rrggbb example.
Ok after mastering tag above then we proceed to the
inspection HEAD and TITLE tags. Here we see that we have the <HEAD> and
the <TITLE>. HEAD tag is used to enclose a variety of functions and
information that are pleasing to the relevant web pages. In this exercise, we
include the TITLE tags between the HEAD tags. As the name implies, this TITLE
tag is used to enclose the phrase that became the title of the web page. Now
let us write the title of this web page:
<HTML>
<HEAD>
<TITLE> WEBSITE my artificial </ TITLE>
</ HEAD>
<BODY BGCOLOR = "yellow" TEXT =
"red">
This paper will appear in the browser.
</ BODY>
</ HTML>
Save this file again by clicking on File and then Save. Now
we will see how the changes in the browser. Do it again Refresh as above. Then
you will see in the top line (called the Title Bar) of the browser will display
the title or titles of your web pages .
more or less like this preview, here I use the Firefox
browser:
finished the first exercise Learn to Make a Website - HTML.