Chatbox

Các bạn vui lòng dùng từ ngữ lịch sự và có văn hóa,sử dụng Tiếng Việt có dấu chuẩn. Chúc các bạn vui vẻ!
14/11/2011 22:11 # 1
Sinhvienkhoa17
Cấp độ: 13 - Kỹ năng: 8

Kinh nghiệm: 105/130 (81%)
Kĩ năng: 55/80 (69%)
Ngày gia nhập: 18/09/2011
Bài gởi: 885
Được cảm ơn: 335
Những bạn đam mê làm website có thể thử ...^^.vi đây là chương trình nước ngoài nên cách bạn tự dịch ^^


 

Getting Started

There are basically two ways to make a web page. The first way is to create the page(s) offline and then upload them to your Internet Service Provider (ISP) via FTP. The second way is to create your web page(s) online using a Telnet program by accessing your UNIX account, if you have one.

If you are creating your web page(s) offline, do so in any text editing or word processing document. Make sure that when you save your document, you save it as a "text", "plain text" or "text only" document. Otherwise it will not be read properly by a web browser. Once you have created your page(s), you will need to contact your ISP about how to go about uploading them to your server.

If you have a UNIX account, you can create your web page(s) online. You first need to get a program that can access your UNIX account. I recommend Telnet for the Mac orEwan for Windows 95/98.

Once you can access your account, you need to make a new directory called "public_html". You can do this by typing:

mkdir public_html

After this, change your directory to this new directory called "public_html".

cd public_html

If you want to, you can make other directories, one for all the web pages that you make, and one for all of the graphics that you have. Follow the same steps as above to do this.

Next, you need to think of a filename for your page (this is not a title, but what will be in the URL). A common filename for a main web page, is "index". Once you've decided on this, add ".html" to the end of it. Then type (i.e.)

pico index.html

Of course, use your page's filename, instead of this one. Next, you need to gain some knowledge of the many HTML commands. Lucky for you, I've already gotten some of the basic commands for you. Follow the index below, to decide what to put on your page, and how to do it. Once you've gotten started, exit your page. You can do this by pressingcontrol-x. Then you need to type:

chmod 744 index.html

Only do this with the filename of your page. You only need to do this the very first time that you leave your web page. This command will make sure that nobody else can delete your page. You will need to do this to any other pages that you make in the future. Then, look at your page on the WWW. Lets say that your server is "www.domain.com", your username is "username", and the name of your page is "index.html". The URL would normally be:

http://www.domain.com/~username/index.html

However, you will need to contact your ISP for your URL.

If you have made separate directories for pages and graphics, then you need to include that in the URL also. Lets say that you made a directory for all of your web pages, called "Pages". The new URL would be: http://www.domain.com/~username/Pages/index.html

Title

The first thing to put on your web page, is a title. The title is what will show up in the very top of the window. Let's say that your title is going to be "John Doe's Web Page", you would type:

<title>John Doe's Web Page</title>

In HTML, every command is surrounded by <'s, and >'s. And in most commands, you need to tell the web browser when to end this command. You do this by putting a back slash (/) in front of the ending command, as in above. Since HTML isn't case sensitive, <title> is the same as <TITLE>, which is the same as <TiTLe>. Next, you need to decide what you want to put on your page. Text, links, graphics, and text fields, are just a few ideas. Follow the table of contents above to decide how, and what to put on your page.

 

Text

 

Headings

HTML has six levels of headings, numbered 1 through 6, with 1 being the largest. Headings are displayed in larger, or smaller fonts, and usually bolder. If you wanted to type "Hello", this is what you would type for each heading, and what the outcome is:

<h1>Hello</h1>

Hello


<h2>Hello</h2>

Hello


<h3>Hello</h3>

Hello


<h4>Hello</h4>

Hello


<h5>Hello</h5>

Hello


<h6>Hello</h6>

Hello


Paragraphs

Whenever you have more than a sentence of writing, you should have paragraphs. Personally, I don't see what the difference is, but I do it anyway, because then I can find a certain spot better when programing. To Make a paragraph of "This is a web page. How do you like what I've done? Please e-mail me with any suggestions at a@a.com", type:

<P>This is a web page. How do you like what I've done? Please e-mail me with any suggestions at a@a.com</P>

The outcome is:

This is a web page. How do you like what I've done? Please e-mail me with any suggestions at a@a.com

 

Lists

There are two types of lists that you can make in HTML, dotted, and numbered. To make a dotted list of: red, orange, green, blue, purple, black, and brown, type:

<UL>
<LI> red
<LI> orange
<LI> green
<LI> blue
<LI> purple
<LI> black
<LI> brown
</UL>

The result is:

  • red
  • orange
  • green
  • blue
  • purple
  • black
  • brown

To make a numbered list of: red, orange, green, blue, purple, black, and brown, type:

<OL>
<LI> red
<LI> orange
<LI> green
<LI> blue
<LI> purple
<LI> black
<LI> brown
</OL>

The result looks like:

  1. red
  2. orange
  3. green
  4. blue
  5. purple
  6. black
  7. brown

 

Forced Line Breaks

There are many cases in which you want to end typing on one line, and start on the next. To do this, you can use a simple HTML command. This is one of the few commands that you don't have to put an ending command on. Let's say that you wanted to say "Hello, how are you?", but with each word on a separate line. All you have to type is:

Hello,<BR>how<BR>are<BR>you?

The outcome is:

Hello,
how
are
you?

Horizontal Rules

Every now and then, you might want to have a horizontal rule, or line in your page. Horizontal rules can be many different sizes and lengths. You can also have the line be solid black, by typing NOSHADE. Here are several examples of sizes and widths, and what the outcome is:

<HR SIZE=1 WIDTH=100%>


<HR SIZE=5 WIDTH=50%>

<HR SIZE=25 WIDTH=75%>

<HR SIZE=3 WIDTH=100%>

<HR NOSHADE SIZE=1 WIDTH=100%>

<HR NOSHADE SIZE=3 WIDTH=100%>

<HR NOSHADE SIZE=10 WIDTH=20%>

 

Character Formatting

You may want to format some of your text differently than others using text styles. There are several types of styles of text that you can use: bolditalicunderlinestrikeout,superscriptsubscriptteletype, and blinking text are examples. To do these styles, surround your text with the following commands:

<b>, </b> for bold

<i>, </i> for italic

<u>, </u> for underlined

<strike>, <strike> for strikeout

<sup>, </sup> for superscript

<sub>, </sub> for subscript

<tt>, </tt> for teletype

<blink>, </blink> for blinking text (very annoying)

You can also mix styles together like this!

 

Linking

 

URLs

When you make a link, you are making colored text or even a graphic (talked about later). When somebody clicks on this text, it will take them to another web page, or possibly a certain section of a web page. Let's say that you wanted to make a link from your web page, to Yahoo!. The URL of Yahoo! is:
http://www.yahoo.com
To do this, you would type:

<A HREF="http://www.yahoo.com">What ever text that you want to be colored goes here</A>

The result would be:

What ever text that you want to be colored goes here

You can go ahead and try it if you want to.

 

Links to Specific Sections

Sometimes, you might want to have a link that will take you further down a page, or to a certain section of another page. An example of this is the index to this web page. You click on the colored text, and it takes you to that section. To do this, you need to do two things. The first, is to make the link, and the second, is to make where the link will lead to.NOTE: You cannot make links to specific sections within a different document unless either you have write permission to the coded source of that document or that document already contains in-document named links. 
1) To make the actual link, think of a name for the certain spot. Let's say you are going to call it "spot". If this certain spot is on the same page that the link is, you would type:

<A HREF="#spot">Colored Text

Otherwise, you would add "#spot" to the end of the URL.
2) Now, you need to make where the link will take you. Go to the spot where you want the link to take you, and type:

<A NAME = "spot">

Mailto Links

Most people like to have a link on their web page that automatically sends e-mail to an address. If you want to do this, and your name is Dan, and your e-mail address is a@a.com, type:

<A HREF="mailto:a@a.com">Dan</a>

Here is the result of typing this:

Dan

Graphics

 

Putting Images On A Page

On almost EVERY web page on the net, there is some kind of graphic. I would HIGHLY RECOMMEND that you have AT LEAST one picture on your page. There are mainly two kinds of ways to have graphics on your web page. The first, is to use a graphic that is on another web page somewhere on the web. The second, is to upload the graphic to your own account. Personally, I prefer to use the upload method. If you are using the other way, there is always a chance that the person who made that page will decide to delete that graphic. Then a symbol with a circle, square, and triangle will appear where the graphic was supposed to be, sometimes it will look like it has been torn through the middle:

1)
To display a graphic on some one else's page, you need to find the URL. To do this, I recommend that you have Netscape Navigator. Right click or click and hold down on the graphic, until a menu comes up. Choose "View this Image". Then , copy the URL that appears at the top of the screen, in the "location" box. Let's say that the URL was: http://www.infhost.com/members/web/Images/pic.gif You would type:

<IMG SRC="http://www.infhost.com/members/web/Images/pic.gif">

The result is:

2)
To display a graphic that is in your account, all you have to do is type in the filename. If you didn't make separate directories for graphics and pages, then you just need to type the graphic's name.(i.e. <IMG SRC="pic.gif">

 

Alternate Text for Images

Some World Wide Web browsers cannot display images. Some users turn off image loading even if their software can display images (especially if they are using a modem or have a slow connection). HTML provides a command to tell readers what they are missing on your pages. The "ALT" attribute lets you specify text to be displayed instead of an image. For example:

<IMG SRC="pic.gif" ALT="How to make a web page">

In this example, "pic.gif" is the picture of a sign. With graphics-capable viewers that have image-loading turned on, you see the graphic. With a non-graphic browser or if image-loading is turned off, the words "How to make a web page" is shown in your window. You should try to include alternate text for each image you use in your document, as it is a courtesy for your readers.

 

Animated Graphics

Some people like to put animation on their web pages. It actually is not that hard. Here is some background history. Most GIFs over the years have only one image per file. According to "technical specifications from 1987", a GIF could have had more than one image per file, making it like a slide show presentation and not a single image. However, most programs that work with GIF are designed around the idea of one image per file. So the multi-image aspect of GIFs was forgotten. In 1989, they added timing and various other abilities to the GIF format, including transparency. Nobody used these new additions either. Then the Web took off. Transparency and interlacing became features people wanted to use and software companies began supporting those features. In order to have animation on your web page, you need to download a program that was made to fit more that one GIF in a file. I recommend GifBuilder for the Mac. Windows users can go here to download another program. Here is one example of a small animation:

Background, text, and link Color

On most pages, you want to have a specific color for the background, text, unvisited links, visited links, and active links. In order to do this, you need to find the code number for the specific color that you are looking for. Here is a HUGE list of code numbers, and here is how you would display this in your page. NOTE: Type these ONLY right below your title. NOTE: You must have the "#" sign before the actual code.

  • <body bgcolor="#code">for background color
  • <body text="#code">for color of text (all non-links)
  • <body link="#code">for color of unvisited links
  • <body vlink="#code">for color of visited links
  • <body alink="#code">for color of active links (while being selected)

You can also string two or more of these commands together:

<body bgcolor="#000015" text="#000020" link="#000050" vlink="#7a7777" alink="#8f8e8d">

Background Graphics

Instead of having a solid color as a background, you might want to have one graphic that repeats over and over to create a background. Here are several places that you can go to find background graphics. The text that you would type in for a background called "bk.gif" would be:

<body background="bk.gif">

Linking with graphics

Sometimes on your web page, you might want to have a graphic that is a link. This is quite simple, since you just mix the two commands of linking, and displaying graphics. Here is an example of a graphic that leads to Yahoo:

You can also have a text link next to the graphic that leads to the same place.

Yahoo!

Here is what you would type in for, first the plain graphic-link, and second, the graphic-link with text:

<A href="http://www.yahoo.com"><IMG SRC="http://www.infhost.com/members/web/Images/yahoo.gif"></A>

<A href="http://www.yahoo.com"><IMG SRC="http://www.infhost.com/members/web/Images/yahoo.gif">Yahoo!</A>


Image Maps

Before you create an image map, you need to make sure that your server supports them. Then, you can follow these steps. First, you need to create an image. Draw a picture with sections that could lead to certain places. Second, you need to create an image map file. There are several programs that can do this for you. I recommend WebMap, for the Mac.You can go to Yahoo's Image Map Directory for others. 

 

Fill-out Forms

 

Getting Started

Fill-out forms let a reader return information to a Web server for some action. For example, suppose you collect names and email addresses so you can email some information to people who request it. This processing of incoming data is usually handled by a script or program written in Perl or another language that manipulates text, files, and information. If you want to, you can write this program yourself, but I have no idea how to do it. I would check with your server. I know that many servers have scripts available for its users. Let's pretend that the one that I'm going to use is called "fb.pl". This will send a response to your fillout form directly to your email address. NOTE: This script is not real, it is just an example. Check with your ISP to see if they have built-in scripts.

 

Form Method/Action

The first thing that you type for your guestbook is the Form Method and Action. This is where you enter the Perl script. Most servers and Internet Providers have scripts like this that they provide for you. Check with yours. You cannot have any kind of forms without having a script. The address of the one that I'll be using is:
http://www.domain.com/cgi-bin/fb.pl. If you would like the response sent to your email address, and the address is "a@a.com", you would type this for the first two lines:

<FORM METHOD="POST" ACTION="http://www.domain.com/cgi-bin/fb.pl">
<INPUT TYPE="input" NAME="recipient" value="a@a.com">TO:<P>

Here is what it will look like:

 

TO:

 

 

Next, you need to decide what questions that you want to ask, and what you will use to ask them. Before you start, though, you might want to check with your server to see if they have any questions that you MUST ask. I know with some ISPs, you must ask what their email address is, their first name, their last name, and what the subject of their question is. You can use single or multiple text fields, larger fields, checkboxes, radio buttons, pull-down lists and scroll-down lists.

 

Single or multiple fields

In your guestbook, you might want to ask questions that have a single one word answer. To here is what you would type to have four fields that ask for an email address, a first name, a last name, and a subject:

<INPUT TYPE="input" NAME="from">Your Email Address<P>
<INPUT TYPE="input" NAME="firstname">Your First Name<P>
<INPUT TYPE="input" NAME="lastname">Your Last Name<P>
<INPUT TYPE="input" NAME="subject">Subject<P>

Here is what the result is:

Your Email Address

Your First Name

Your Last Name

Subject


Larger Fields

I would recommend that you have one larger field at the end of your guestbook for comments. You first need to decide how many columns and rows that you want to have. Let's say that you want to have 7 rows, and 45 columns. Here is what you would type:

Please place any questions or comments here:
<TEXTAREA Rows=7 Cols=45 NAME="suggestions"></TEXTAREA><P>

Here is what the result looks like:

Please place any questions or comments here:

 

Checkboxes

Let's say that you wanted to ask a question like "What are some things that you like to do?" You could have a list of things with checkboxes. If you wanted the list to be: Watch TV, play on the Internet, read a book, play sports, and study, you would type:

What are some things that you like to do?

<INPUT TYPE="checkbox" NAME="like" VALUE="TV">Watch TV<P>
<INPUT TYPE="checkbox" NAME="like" VALUE="internet">Play on the Internet<P>
<INPUT TYPE="checkbox" NAME="like" VALUE="read">Read a book<P>
<INPUT TYPE="checkbox" NAME="like" VALUE="sports">Play sports<P>
<INPUT TYPE="checkbox" NAME="like" VALUE="study">Study<P>

The result:

What are some things that you like to do?

Watch TV

Play on the Internet

Read a book

Play sports

Study

 

Radio Buttons

If you ever want to ask a question with one answer, you can use radio buttons. If you wanted to ask "What WWW browser are you using right now?", and you wanted to have the choices Netscape Navigator 4.x, Netscape Navigator 3.x, Netscape Communicator, Mosaic, and Microsoft Explorer, you would type:

What WWW browser are you using right now?

<INPUT TYPE="radio" NAME="browser" VALUE="Navigator 4.x">Netscape Navigator 4.x<P>
<INPUT TYPE="radio" NAME="browser" VALUE="Navigator 3.x">Netscape Navigator 3.x<P>
<INPUT TYPE="radio" NAME="browser" VALUE="Communicator">Netscape Communicator<P>
<INPUT TYPE="radio" NAME="browser" VALUE="Mosaic">Mosaic<P>
<INPUT TYPE="radio" NAME="browser" VALUE="Internetex">Internet Explorer<P>

The Result:

What WWW browser are you using right now?

Netscape Navigator 4.x


Netscape Navigator 3.x


Netscape Communicator


Mosaic


Internet Explorer


Pull-Down Lists

Another way to ask a question with only one answer is to use a pull-down menu. You can use the SELECTED command to have an option besides the first be selected, as you will see below. If you wanted to ask "What is your favorite color?", and you wanted the list to be of red, yellow, orange, green, blue, purple, black, and brown, with black selected, you would type:

What is your favorite color?
<SELECT NAME="color">
<OPTION>Red
<OPTION>Yellow
<OPTION>Orange
<OPTION>Green
<OPTION>Blue
<OPTION>Purple
<OPTION SELECTED>Black
<OPTION>Brown
</SELECT><P>

The outcome is:

What is your favorite color? 

 

Scroll-Down Lists

Some times, you might want to have a scroll-down list on your page. With this, you can decide whether or not you want people to be able to select more that one item. If you do have it with more that one items, the user has to hold down the command or shift key. You can also decide how many of the lines you want visible. Below are two lists of the same things. In the first one, you can only select one item, and it is showing three lines. In the second one, you can select one or more items by holding down command or shift . The second list is showing four lines. The question is "What is your favorite video game system?" The answers are: Nintendo 64, Sony Playstation, Sega Dreamcast, or arcade video games. The text that you type for each list is above the actual list.

What is your favorite video game system?
<SELECT NAME="video game" SIZE=3>
<OPTION VALUE="nintendo64">Nintendo 64
<OPTION VALUE="playstation">Sony Playstation
<OPTION VALUE="dreamcast">Sega Dreamcast
<OPTION VALUE="arcade">Arcade Games
</SELECT><P>

The outcome is:

What is your favorite video game system?

 


What is your favorite video game system? (Hold shift to select more that one)
<SELECT NAME="video game" MULTIPLE SIZE=4>
<OPTION VALUE="nintendo64">Nintendo 64
<OPTION VALUE="playstation">Sony Playstation
<OPTION VALUE="dreamcast">Sega Dreamcast
<OPTION VALUE="arcade">Arcade Games
</SELECT><P>

 

The second outcome is:

What is your favorite video game system? (Hold shift to select more that one) 

 

Reset Form

On most page that have fill-out forms, there is a reset button at the bottom of the form, next to the "submit" or "send" button. To have a reset button, just type:

To reset the all of the forms, press this button:<INPUT TYPE="reset" VALUE="Reset">

The outcome is: (try it!)

To reset the all of the forms, press this button:

Submit Entry

When you are all finished with everything, you need to make a button so that people can submit their entry. To do this, type:

To submit your choices, press this button:<INPUT TYPE="submit" VALUE="Submit">

The result is: (NOTE: Please don't click this button. It has been disabled and will not work.)

To submit your choices, press this button:

NOTE: At the very end of your form, you must type </FORM> or your forms won't work!!

 

Frames

 

What are Frames?

Frames basically split your window in to sections. You can display two or more web pages at a time with frames. You don't necessarily have to have whole pages in a frame. You could just have graphics, too. If you are really interested in putting frames on your page, I recommend that you go here to Sharky's Netscape Frames Tutorial and read the lessons.

Java

 

What is Java?

Java is a simple, robust, object-oriented, platform-independent multi-threaded, dynamic general-purpose programming environment. It's best for creating applets and applications for the Internet, intranets and any other complex, distributed network.

 

Programming in Java

I do not know how to program in java. However, it is a very useful language if you know how to use it. If you think that you would like to begin learning the java language, an excellent tutorial can be found here.

Just because I don't know how to program in java, doesn't mean that I don't use it. I love java. It can add so much to a web site. If you really don't want to learn java, but would like to use it on your web pages, I would suggest using free java scripts that can be found around the web. One such web site can be found here at Sharky's JavaScript Answers.





 
14/11/2011 22:11 # 2
Sinhvienkhoa17
Cấp độ: 13 - Kỹ năng: 8

Kinh nghiệm: 105/130 (81%)
Kĩ năng: 55/80 (69%)
Ngày gia nhập: 18/09/2011
Bài gởi: 885
Được cảm ơn: 335
Phản hồi: Những bạn đam mê làm website có thể thử ...^^.vi đây là chương trình nước ngoài nên cách bạn tự dịch ^^


Lời nói đầu mỗi ngày tớ sẽ post một bài vê lập trình web site tất nhiên sẽ từ dễ tới khó vì thế cố gắng nhớ nhau nhớ đoc kĩ phân ở trên để hoc tốt hơn nhé.tui mình nên kiếm tốn trong mọi công việc cố gắng xây dựng bản thân đừng để thua thiệt bạn bè nghe hì hì

Ví dụ trong Chương Mỗi

Hướng dẫn này HTML chứa hàng trăm ví dụ HTML.

Với trình biên tập HTML trực tuyến của chúng tôi, bạn có thể chỉnh sửa HTML, và bấm vào một nút để xem kết quả.

Ví dụ

<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>
kết quả

My First heading

My first paragraph.
các bạn nhớ để ý h4 <-- cái này ảnh huong tới cỡ chữ nha ^^
chú ý nha 1 tuần tớ sẽ xóa các phần nội dung trong topic hết để ko ảnh hưởng tài nguyên của forum mong thông cảm.(tớ chỉ xóa phần trước thui với lai ko nên truyên bá rộng rãi mang tiếng ^^)^^





 
15/11/2011 01:11 # 3
Sinhvienkhoa17
Cấp độ: 13 - Kỹ năng: 8

Kinh nghiệm: 105/130 (81%)
Kĩ năng: 55/80 (69%)
Ngày gia nhập: 18/09/2011
Bài gởi: 885
Được cảm ơn: 335
Phản hồi: Những bạn đam mê làm website có thể thử ...^^.vi đây là chương trình nước ngoài nên cách bạn tự dịch ^^


HTML nhóm

Các tiêu đề HTML được định nghĩa với các <h1> với các thẻ <h6>.

Ví dụ

<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>

 


HTML khoản

Đoạn HTML được định nghĩa với các tag <p>.

Ví dụ

<p>This is a paragraph.</p>
<p>This is another paragraph.</p>


Liên kết HTML

HTML liên kết được định nghĩa với các từ khóa <a>.

Ví dụ

<a href="http://www.w3schools.com">This is a link</a>

 

Lưu ý: Các địa chỉ liên kết được quy định cụ thể trong các thuộc tính href.

(Bạn sẽ tìm hiểu về các thuộc tính trong một chương sau này của hướng dẫn này).


HTML hình ảnh

Các hình ảnh HTML được định nghĩa với các từ khóa <img>.

Ví dụ

<img src="w3schools.jpg" width="104" height="142" />

 

Lưu ý : Tên và kích thước của hình ảnh được cung cấp như là thuộc tính.





 
15/11/2011 13:11 # 4
luckyse7en
Cấp độ: 3 - Kỹ năng: 1

Kinh nghiệm: 11/30 (37%)
Kĩ năng: 7/10 (70%)
Ngày gia nhập: 04/10/2011
Bài gởi: 41
Được cảm ơn: 7
Phản hồi: Những bạn đam mê làm website có thể thử ...^^.vi đây là chương trình nước ngoài nên cách bạn tự dịch ^^


 DÀI KINH HỒN RỨA CHA 




Tiếng sột soạt của đồng tiền là âm thanh hấp dẫn nhất =))


 
16/11/2011 00:11 # 5
Sinhvienkhoa17
Cấp độ: 13 - Kỹ năng: 8

Kinh nghiệm: 105/130 (81%)
Kĩ năng: 55/80 (69%)
Ngày gia nhập: 18/09/2011
Bài gởi: 885
Được cảm ơn: 335
Phản hồi: Những bạn đam mê làm website có thể thử ...^^.vi đây là chương trình nước ngoài nên cách bạn tự dịch ^^


xem rứa chớ không dài đâu
 

Các đề quan trọng

Sử dụng tiêu đề HTML cho các nhóm này chỉ. Không sử dụng các tiêu đề để làm cho văn bản BIGhoặc đậm .

Công cụ tìm kiếm sử dụng tiêu đề của bạn chỉ số cấu trúc và nội dung của các trang web của bạn.

Vì người dùng có thể lướt qua các trang của bạn bằng cách tiêu đề của nó, điều quan trọng là sử dụng các tiêu đề để hiển thị cấu trúc tài liệu.

Tiêu đề H1 được sử dụng như các tiêu đề chính, theo sau là nhóm H2, sau đó tiêu đề ít quan trọng hơn H3, và như vậy.


HTML dòng

Các <hr /> tag tạo ra một dòng ngang trong một trang HTML. Các yếu tố giờ có thể được sử dụng để nội dung riêng biệt :
 

Ví dụ

<p>This is a paragraph</p>
<hr />
<p>This is a paragraph</p>
<hr />
<p>This is a paragraph</p>

 


HTML Bình luận

Bình luận có thể được chèn vào trong mã HTML để làm cho nó dễ đọc hơn và dễ hiểu. Được bỏ qua bởi trình duyệt và không được hiển thị.

Được viết như thế này:

Ví dụ

<!-- This is a comment -->

 

Lưu ý: Có một dấu chấm than sau khi khung khai mạc, nhưng không phải trước dấu ngoặc đóng.


HTML Mẹo - Làm thế nào để View Source HTML

Bạn đã bao giờ nhìn thấy một trang web và tự hỏi: "Này Làm thế nào họ làm điều đó?"

Để tìm hiểu, bạn nhấn phải chuột trong trang và chọn "View Source" (IE) hoặc "Page View Source" (Firefox), hoặc tương tự cho các trình duyệt khác. Điều này sẽ mở ra một mã html của trang đó





 
16/11/2011 01:11 # 6
Sinhvienkhoa17
Cấp độ: 13 - Kỹ năng: 8

Kinh nghiệm: 105/130 (81%)
Kĩ năng: 55/80 (69%)
Ngày gia nhập: 18/09/2011
Bài gởi: 885
Được cảm ơn: 335
Phản hồi: Những bạn đam mê làm website có thể thử ...^^.vi đây là chương trình nước ngoài nên cách bạn tự dịch ^^


 

HTML khoản

Các đoạn văn bản được định nghĩa với các từ khóa <p>.

Ví dụ

<p>This is a paragraph</p>
<p>This is another paragraph</p>

 

Lưu ý: Các trình duyệt tự động thêm một dòng trống trước và sau khi một đoạn.


Đừng quên Tag Cuối

Hầu hết các trình duyệt sẽ hiển thị HTML, một cách chính xác ngay cả khi bạn quên thẻ kết thúc:

Ví dụ

<p>This is a paragraph
<p>This is another paragraph

 

Ví dụ trên sẽ làm việc trong hầu hết các trình duyệt, nhưng không dựa vào nó. Quên thẻ kết thúc có thể tạo ra kết quả bất ngờ hoặc các lỗi.

Lưu ý: Tương lai phiên bản của HTML sẽ không cho phép bạn bỏ qua các thẻ kết thúc.


Dòng Breaks HTML

Sử dụng thẻ <br /> nếu bạn muốn có một ngắt dòng (một dòng mới) mà không cần bắt đầu một đoạn mới:

Ví dụ

<p>This is<br />a para<br />graph with line breaks</p>

 

Các /> <br yếu tố là một phần tử HTML có sản phẩm nào. Nó không có thẻ kết thúc.


- hoặc <br />

Trong XHTML, XML, các phần tử không có thẻ kết thúc (thẻ đóng) không được phép.

Ngay cả khi công trình - trong tất cả các trình duyệt, viết <br /> thay vì làm việc tốt hơn trong các ứng dụng XHTML và XML.


HTML Output - Lời khuyên hữu ích

Bạn không thể chắc chắn làm thế nào HTML sẽ được hiển thị. Màn hình lớn hay nhỏ, và thay đổi kích thước cửa sổ sẽ tạo ra kết quả khác nhau.

Với HTML, bạn không thể thay đổi sản lượng bằng cách thêm vào không gian phòng, hay dòng thêm trong mã HTML của bạn.

Các trình duyệt sẽ loại bỏ các không gian bổ sung và các dòng thêm khi trang được hiển thị. Bất kỳ số lượng các dòng được tính là một dòng, và bất kỳ số lượng của không gian tính là một không gian.

(Ví dụ này chứng tỏ một số vấn đề định dạng HTML)





 
16/11/2011 01:11 # 7
Sinhvienkhoa17
Cấp độ: 13 - Kỹ năng: 8

Kinh nghiệm: 105/130 (81%)
Kĩ năng: 55/80 (69%)
Ngày gia nhập: 18/09/2011
Bài gởi: 885
Được cảm ơn: 335
Phản hồi: Những bạn đam mê làm website có thể thử ...^^.vi đây là chương trình nước ngoài nên cách bạn tự dịch ^^


 

Tag HTML <font> không nên được sử dụng

Thẻ <font> bị phản đối trong HTML 4, và loại bỏ từ HTML5.

World Wide Web Consortium (W3C) đã loại bỏ các thẻ <font> từ khuyến nghị của mình.

Trong HTML 4, style sheets (CSS) nên được sử dụng để xác định các thuộc tính bố trí và hiển thị nhiều yếu tố HTML. 

Ví dụ dưới đây cho thấy làm thế nào HTML có thể tìm bằng cách sử dụng thẻ <font>:

Ví dụ

<p>
<font size="5" face="arial" color="red">
This paragraph is in Arial, size 5, and in red text color.
</font>
</p>

<p>
<font size="3" face="verdana" color="blue">
This paragraph is in Verdana, size 3, and in blue text color.
</font>
</p>

  Một chút tác phẩm ^^" of me
<html>
<body style="background-color:blue;">
<h1>Hello all people <h1>
<hr size=20 width=100% >
<img src="http://j2ckbl2ck.files.wordpress.com/2010/12/google_chrome_wallpaper8-jpg.png"width=300 heigh=400>
<b><font size="5" face="arial" color="blue">Nguoi quan li Phong</font></b><hr/>
<a href="http://forum.duytan.edu.vn/sites/index.aspx?p=forum_thread&forum=828&thread=33111#p0">đia chi</a>
 
<BK>Xin chao moi nguoi<hr/> <BR> tui ten la<BR><hr/>
 
<!--This is comment-->
<p>binh luan</p>
<hr SIZE=1 width=50%>
</body>
</html>




 
16/11/2011 07:11 # 8
k15cmu
Cấp độ: 23 - Kỹ năng: 24

Kinh nghiệm: 104/230 (45%)
Kĩ năng: 207/240 (86%)
Ngày gia nhập: 05/01/2010
Bài gởi: 2625
Được cảm ơn: 2967
Phản hồi: Những bạn đam mê làm website có thể thử ...^^.vi đây là chương trình nước ngoài nên cách bạn tự dịch ^^


- Bạn post cho nhiều vào, ai mà xem cho hết được. Để học web thì bạn nên vào trang http://www.w3schools.com/ mà học. Vừa có mẫu vừa làm thử và vừa xem kết quả của mình vừa làm được luôn. Nó cũng hướng dẫn hết trong trang web đó rồi


Thông tin liên hệ:
Cần hỗ trợ trực tuyến (skype): Phong.D.NGUYEN
Nick yahoo: conspeed_dark1991
Email: herodark191@gmail.com

 
17/11/2011 21:11 # 9
Sinhvienkhoa17
Cấp độ: 13 - Kỹ năng: 8

Kinh nghiệm: 105/130 (81%)
Kĩ năng: 55/80 (69%)
Ngày gia nhập: 18/09/2011
Bài gởi: 885
Được cảm ơn: 335
Những bạn đam mê làm website có thể thử ...^^.vi đây là chương trình nước ngoài nên cách bạn tự dịch ^^


  chú ý :
<hr size=1 width=100%>  vẽ vạch hay dùng nek
<hr  noshade size=1 whidth=100%>
lưu ý các bạn thik gõ chữ hoa hay chữ thường cũng dc .chiu khó đoc kĩ nha còn trang http://w3schools.com/html/default.asp nên chỉ zo thực hành thôi ^^.nhưng cô lên nhá cai ni khó lém bà con trong lớp nhớ zo trang http://k17cmutpm.dmon.com/ ủng hộ lớp nhé <chém tự do>




 
20/11/2011 20:11 # 10
Sinhvienkhoa17
Cấp độ: 13 - Kỹ năng: 8

Kinh nghiệm: 105/130 (81%)
Kĩ năng: 55/80 (69%)
Ngày gia nhập: 18/09/2011
Bài gởi: 885
Được cảm ơn: 335
Phản hồi: Những bạn đam mê làm website có thể thử ...^^.vi đây là chương trình nước ngoài nên cách bạn tự dịch ^^


 <table border="1">
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
////////////////kết quả
Header 1 Header 2
row 1, cell 1 row 1, cell 2
row 2, cell 1 row 2, cell 2




 
21/11/2011 23:11 # 11
Sinhvienkhoa17
Cấp độ: 13 - Kỹ năng: 8

Kinh nghiệm: 105/130 (81%)
Kĩ năng: 55/80 (69%)
Ngày gia nhập: 18/09/2011
Bài gởi: 885
Được cảm ơn: 335
Phản hồi: Những bạn đam mê làm website có thể thử ...^^.vi đây là chương trình nước ngoài nên cách bạn tự dịch ^^


 

Màu giá trị

Màu Màu HEX Màu RGB
  # 000000 rgb (0,0,0)
  # FF0000 rgb (255,0,0)
  # 00FF00 rgb (0,255,0)
  # 0000FF rgb (0,0,255)
  # FFFF00 rgb (255,255,0)
  # 00FFFF rgb (0255255)
  # FF00FF rgb (255,0,255)
  # C0C0C0 rgb (192.192.192)
  # FFFFFF rgb (255.255.255)

 

16 triệu màu sắc khác nhau

Sự kết hợp của Red, Green, và các giá trị màu xanh 0-255, cung cấp cho hơn 16 triệu màu sắc khác nhau (256 x 256 x 256).

Nếu bạn nhìn vào bảng màu dưới đây, bạn sẽ thấy kết quả của sự thay đổi ánh sáng màu đỏ 0-255, trong khi vẫn giữ ánh sáng màu xanh lá cây và màu xanh ở số không.

Để xem danh sách đầy đủ màu sắc pha trộn khi RED thay đổi 0-255, click vào một trong các HEX hoặc RGB giá trị dưới đây.

Red Light Màu HEX Màu RGB
  # 000000  rgb (0,0,0) 
  # 080000  rgb (8,0,0) 
  # 100000  rgb (16,0,0) 
  # 180000  rgb (24,0,0) 
  # 200000  rgb (32,0,0) 
  # 280000  rgb (40,0,0) 
  # 300000  rgb (48,0,0) 
  # 380000  rgb (56,0,0) 
  # 400000  rgb (64,0,0) 
  # 480000  rgb (72,0,0) 
  # 500000  rgb (80,0,0) 
  # 580000  rgb (88,0,0) 
  # 600000  rgb (96,0,0) 
  # 680000  rgb (104,0,0) 
  # 700000  rgb (112,0,0) 
  # 780000  rgb (120,0,0) 
  # 800000  rgb (128,0,0) 
  # 880000  rgb (136,0,0) 
  # 900000  rgb (144,0,0) 
  # 980000  rgb (152,0,0) 
  # A00000  rgb (160,0,0) 
  # A80000  rgb (168,0,0) 
  # B00000  rgb (176,0,0) 
  # B80000  rgb (184,0,0) 
  # C00000  rgb (192,0,0) 
  # C80000  rgb (200,0,0) 
  # D00000  rgb (208,0,0) 
  # D80000  rgb (216,0,0) 
  # E00000  rgb (224,0,0) 
  # E80000  rgb (232,0,0) 
  # F00000  rgb (240,0,0) 
  # F80000  rgb (248,0,0) 
  # FF0000  rgb (255,0,0) 


Màu xám

Màu xám được tạo ra bằng cách sử dụng một số tiền bằng nhau quyền lực cho tất cả các nguồn ánh sáng.

Để làm cho nó dễ dàng hơn cho bạn để chọn màu chính xác, chúng tôi đã tạo ra một bảng màu xám cho bạn:

Màu xám Shades Màu HEX Màu RGB
  # 000000  rgb (0,0,0) 
  # 080808  rgb (8,8,8) 
  # 101010  rgb (16,16,16) 
  # 181818  rgb (24,24,24) 
  # 202020  rgb (32,32,32) 
  # 282828  rgb (40,40,40) 
  # 303030  rgb (48,48,48) 
  # 383838  rgb (56,56,56) 
  # 404040  rgb (64,64,64) 
  # 484848  rgb (72,72,72) 
  # 505050  rgb (80,80,80) 
  # 585858  rgb (88,88,88) 
  # 606060  rgb (96,96,96) 
  # 686868  rgb (104.104.104) 
  # 707070  rgb (112.112.112) 
  # 787878  rgb (120.120.120) 
  # 808080  rgb (128.128.128) 
  # 888888  rgb (136.136.136) 
  # 909090  rgb (144.144.144) 
  # 989898  rgb (152.152.152) 
  # A0A0A0  rgb (160.160.160) 
  # A8A8A8  rgb (168.168.168) 
  # B0B0B0  rgb (176.176.176) 
  # B8B8B8  rgb (184.184.184) 
  # C0C0C0  rgb (192.192.192) 
  # C8C8C8  rgb (200.200.200) 
  # D0D0D0  rgb (208.208.208) 
  # D8D8D8  rgb (216.216.216) 
  # E0E0E0  rgb (224.224.224) 
  # E8E8E8  rgb (232.232.232) 
  # F0F0F0  rgb (240.240.240) 
  # F8F8F8  rgb (248.248.248) 
  # FFFFFF  rgb (255.255.255) 


Safe Web Màu sắc?

Một vài năm trước đây, khi máy tính được hỗ trợ tối đa 256 màu sắc khác nhau, một danh sách của 216 "Màu sắc Web an toàn" đã được đề xuất như là một tiêu chuẩn Web, dành 40 màu sắc hệ thống cố định.

216 cross-trình duyệt bảng màu được tạo ra để đảm bảo rằng tất cả các máy tính sẽ hiển thị màu sắc chính xác khi chạy một bảng màu 256.

Đây không phải là quan trọng ngày hôm nay, vì hầu hết các máy tính có thể hiển thị hàng triệu màu sắc khác nhau. Dù sao, đây là danh sách:

000000 000033 000066 000099 0000CC 0000FF
003300 003333 003366 003399 0033CC 0033FF
006600 006633 006666 006699 0066CC 0066FF
009900 009933 009966 009999 0099CC 0099FF
00CC00 00CC33 00CC66 00CC99 00CCCC 00CCFF
00FF00 00FF33 00FF66 00FF99 00FFCC 00FFFF
330000 330033 330066 330099 3300CC 3300FF
333300 333333 333366 333399 3333CC 3333FF
336600 336633 336666 336699 3366CC 3366FF
339900 339933 339966 339999 3399CC 3399FF
33CC00 33CC33 33CC66 33CC99 33CCCC 33CCFF
33FF00 33FF33 33FF66 33FF99 33FFCC 33FFFF
660000 660033 660066 660099 6600CC 6600FF
663300 663333 663366 663399 6633CC 6633FF
666600 666633 666666 666699 6666CC 6666FF
669900 669933 669966 669999 6699CC 6699FF
66CC00 66CC33 66CC66 66CC99 66CCCC 66CCFF
66FF00 66FF33 66FF66 66FF99 66FFCC 66FFFF
990000 990033 990066 990099 9900CC 9900FF
993300 993333 993366 993399 9933CC 9933FF
996600 996633 996666 996699 9966CC 9966FF
999900 999933 999966 999999 9999CC 9999FF
99CC00 99CC33 99CC66 99CC99 99CCCC 99CCFF
99FF00 99FF33 99FF66 99FF99 99FFCC 99FFFF
CC0000 CC0033 CC0066 CC0099 CC00CC CC00FF
CC3300 CC3333 CC3366 CC3399 CC33CC CC33FF
CC6600 CC6633 CC6666 CC6699 CC66CC CC66FF
CC9900 CC9933 CC9966 CC9999 CC99CC CC99FF
CCCC00 CCCC33 CCCC66 CCCC99 CCCCCC CCCCFF
CCFF00 CCFF33 CCFF66 CCFF99 CCFFCC CCFFFF
FF0000 FF0033 FF0066 FF0099 FF00CC FF00FF
FF3300 FF3333 FF3366 FF3399 FF33CC FF33FF
FF6600 FF6633 FF6666 FF6699 FF66CC FF66FF
FF9900 FF9933 FF9966 FF9999 FF99CC FF99FF
FFCC00 FFCC33 FFCC66 FFCC99 FFCCCC FFCCFF
FFFF00 FFFF33 FFFF66 FFFF99 FFFFCC FFFFFF

Màu Tên HEX Màu Shades Pha
AliceBlue  # F0F8FF   Shades Pha
AntiqueWhite  # FAEBD7   Shades Pha
Aqua  # 00FFFF   Shades Pha
Lục ngọc  # 7FFFD4   Shades Pha
Nhuộm  # F0FFFF   Shades Pha
Be  # F5F5DC   Shades Pha
Đồ sứ nung  # FFE4C4   Shades Pha
Đen  # 000000   Shades Pha
BlanchedAlmond  # FFEBCD   Shades Pha
Màu xanh  # 0000FF   Shades Pha
BlueViolet  # 8A2BE2   Shades Pha
Brown  # A52A2A   Shades Pha
BurlyWood  # DEB887   Shades Pha
CadetBlue  # 5F9EA0   Shades Pha
Mèo lông xám  # 7FFF00   Shades Pha
Sôcôla  # D2691E   Shades Pha
San hô  # FF7F50   Shades Pha
CornflowerBlue  # 6495ED   Shades Pha
Cornsilk  # FFF8DC   Shades Pha
Crimson  # DC143C   Shades Pha
Cyan  # 00FFFF   Shades Pha
Thẫm  # 00008B   Shades Pha
DarkCyan  # 008B8B   Shades Pha
DarkGoldenRod  # B8860B   Shades Pha
DarkGray  # A9A9A9   Shades Pha
DarkGrey  # A9A9A9   Shades Pha
DarkGreen  # 006400   Shades Pha
DarkKhaki  # BDB76B   Shades Pha
DarkMagenta  # 8B008B   Shades Pha
DarkOliveGreen  # 556B2F   Shades Pha
Darkorange  # FF8C00   Shades Pha
DarkOrchid  # 9932CC   Shades Pha
DarkRed  # 8B0000   Shades Pha
DarkSalmon  # E9967A   Shades Pha
DarkSeaGreen  # 8FBC8F   Shades Pha
DarkSlateBlue  # 483D8B   Shades Pha
DarkSlateGray  # 2F4F4F   Shades Pha
DarkSlateGrey  # 2F4F4F   Shades Pha
DarkTurquoise  # 00CED1   Shades Pha
DarkViolet  # 9400D3   Shades Pha
DeepPink  # FF1493   Shades Pha
DeepSkyBlue  # 00BFFF   Shades Pha
DimGray  # 696969   Shades Pha
DimGrey  # 696969   Shades Pha
DodgerBlue  # 1E90FF   Shades Pha
Loại đá nung  # B22222   Shades Pha
FloralWhite  # FFFAF0   Shades Pha
ForestGreen  # 228B22   Shades Pha
Cây khoa vản anh  # FF00FF   Shades Pha
Gainsboro  # DCDCDC   Shades Pha
GhostWhite  # F8F8FF   Shades Pha
Vàng  # FFD700   Shades Pha
Goldenrod  # DAA520   Shades Pha
Màu xám  # 808080   Shades Pha
Màu xám  # 808080   Shades Pha
Xanh  # 008000   Shades Pha
GreenYellow  # ADFF2F   Shades Pha
Honeydew  # F0FFF0   Shades Pha
HotPink  # FF69B4   Shades Pha
IndianRed   # CD5C5C   Shades Pha
Chàm   # 4B0082   Shades Pha
Ngà  # FFFFF0   Shades Pha
Khaki  # F0E68C   Shades Pha
Lavender  # E6E6FA   Shades Pha
LavenderBlush  # FFF0F5   Shades Pha
LawnGreen  # 7CFC00   Shades Pha
LemonChiffon  # FFFACD   Shades Pha
LightBlue  # ADD8E6   Shades Pha
LightCoral  # F08080   Shades Pha
LightCyan  # E0FFFF   Shades Pha
LightGoldenRodYellow  # FAFAD2   Shades Pha
LightGray  # D3D3D3   Shades Pha
LightGrey  # D3D3D3   Shades Pha
LightGreen  # 90EE90   Shades Pha
LightPink  # FFB6C1   Shades Pha
LightSalmon  # FFA07A   Shades Pha
LightSeaGreen  # 20B2AA   Shades Pha
LightSkyBlue  # 87CEFA   Shades Pha
LightSlateGray  # 778899   Shades Pha
LightSlateGrey  # 778899   Shades Pha
LightSteelBlue  # B0C4DE   Shades Pha
LightYellow  # FFFFE0   Shades Pha
Vôi  # 00FF00   Shades Pha
LimeGreen  # 32CD32   Shades Pha
Lanh  # FAF0E6   Shades Pha
Sắc đỏ sậm  # FF00FF   Shades Pha
Lười biếng  # 800000   Shades Pha
MediumAquaMarine  # 66CDAA   Shades Pha
Mediumblue  # 0000CD   Shades Pha
MediumOrchid  # BA55D3   Shades Pha
MediumPurple  # 9370D8   Shades Pha
MediumSeaGreen  # 3CB371   Shades Pha
MediumSlateBlue  # 7B68EE   Shades Pha
MediumSpringGreen  # 00FA9A   Shades Pha
MediumTurquoise  # 48D1CC   Shades Pha
MediumVioletRed  # C71585   Shades Pha
MidnightBlue  # 191970   Shades Pha
MintCream  # F5FFFA   Shades Pha
MistyRose  # FFE4E1   Shades Pha
Giày của mọi da đỏ  # FFE4B5   Shades Pha
NavajoWhite  # FFDEAD   Shades Pha
Hải quân  # 000080   Shades Pha
OldLace  # FDF5E6   Shades Pha
Ôliu  # 808000   Shades Pha
OliveDrab  # 6B8E23   Shades Pha
Orange  # FFA500   Shades Pha
Màu cam đỏ  # FF4500   Shades Pha
Cây lan  # DA70D6   Shades Pha
PaleGoldenRod  # EEE8AA   Shades Pha
PaleGreen  # 98FB98   Shades Pha
PaleTurquoise  # AFEEEE   Shades Pha
PaleVioletRed  # D87093   Shades Pha
PapayaWhip  # FFEFD5   Shades Pha
PeachPuff  # FFDAB9   Shades Pha
Peru  # CD853F   Shades Pha
Màu hồng  # FFC0CB   Shades Pha
Nho khô  # DDA0DD   Shades Pha
PowderBlue  # B0E0E6   Shades Pha
Màu tím  # 800080   Shades Pha
Red  # FF0000   Shades Pha
RosyBrown  # BC8F8F   Shades Pha
RoyalBlue  # 4169E1   Shades Pha
SaddleBrown  # 8B4513   Shades Pha
Cá hồi  # FA8072   Shades Pha
SandyBrown  # F4A460   Shades Pha
Biển xanh  # 2E8B57   Shades Pha
Vỏ sò  # FFF5EE   Shades Pha
Sienna  # A0522D   Shades Pha
Bạc  # C0C0C0   Shades Pha
Xanh da trời  # 87CEEB   Shades Pha
SlateBlue  # 6A5ACD   Shades Pha
SlateGray  # 708090   Shades Pha
SlateGrey  # 708090   Shades Pha
Tuyết Rơi  # FFFAFA   Shades Pha
SpringGreen  # 00FF7F   Shades Pha
SteelBlue  # 4682B4   Shades Pha
Tân  # D2B48C   Shades Pha
Con le le  # 008080   Shades Pha
Một loại cây gai  # D8BFD8   Shades Pha
Cà chua  # FF6347   Shades Pha
Turquoise  # 40E0D0   Shades Pha
Violet  # EE82EE   Shades Pha
Lúa mì  # F5DEB3   Shades Pha
Trắng  # FFFFFF   Shades Pha
WhiteSmoke  # F5F5F5   Shades Pha
Vàng  # FFFF00   Shades Pha
YellowGreen  # 9ACD32   Shades Pha

lệnh tổng quát:
<h1 style="background-color=hex;">text</h1>




 
16/11/2012 14:11 # 12
Sinhvienkhoa17
Cấp độ: 13 - Kỹ năng: 8

Kinh nghiệm: 105/130 (81%)
Kĩ năng: 55/80 (69%)
Ngày gia nhập: 18/09/2011
Bài gởi: 885
Được cảm ơn: 335
Phản hồi: Những bạn đam mê làm website có thể thử ...^^.vi đây là chương trình nước ngoài nên cách bạn tự dịch ^^


vi du :





 
16/11/2012 14:11 # 13
Sinhvienkhoa17
Cấp độ: 13 - Kỹ năng: 8

Kinh nghiệm: 105/130 (81%)
Kĩ năng: 55/80 (69%)
Ngày gia nhập: 18/09/2011
Bài gởi: 885
Được cảm ơn: 335
Phản hồi: Những bạn đam mê làm website có thể thử ...^^.vi đây là chương trình nước ngoài nên cách bạn tự dịch ^^


Trích:

vi du :

 
File đính kèm Bạn phải đăng nhập mới thấy link download




 
Copyright© Đại học Duy Tân 2010 - 2024