Sunday, May 06, 2012
Wednesday, May 02, 2012
Sunday, April 01, 2012
Adding meta description and meta keywords in Drupal 7 is different compared with Drupal 6. I used drupal_add_html_head() for
adding meta
description and meta keywords in header. In my theme (template.php
file), I call hook_page_alter() for embeding meta. If you want to add
meta description and meta keywords in your site then go to your site
default theme folder’s template.php file and paste the code (display
below) :
Or you can use module Meta Tags Quickfunction yourtheme_page_alter($page) {
$meta_description = array(
'#type' => 'html_tag',
'#tag' => 'meta',
'#attributes' => array(
'name' => 'description',
'content' => 'some description here'
));
$meta_keywords = array(
'#type' => 'html_tag',
'#tag' => 'meta',
'#attributes' => array(
'name' => 'keywords',
'content' => 'some, keywords'
));
drupal_add_html_head( $meta_description, 'meta_description' );
drupal_add_html_head( $meta_keywords, 'meta_keywords' );
}
http://drupal.org/project/metatags_quick
Thursday, March 29, 2012
Friday, March 23, 2012
Biểu tượng Copyleft
Là một sản phẩm công nghiệp, nhưng chắc chắn phần mềm không giống như một chiếc xe hơi hay máy bay trực thăng. Vì vậy, phần mềm được bảo hộ theo quy định của sở hữu trí tuệ. Thuật ngữ đang dùng là Copyright - tác quyền.
Sunday, March 11, 2012
Saturday, March 10, 2012
Microsoft tuyên bố đã tung ra thị trường toàn cầu phiên bản mới nhất của nền tảng quản lí dữ liệu Microsoft SQL Server 2012.

Microsoft kì vọng SQL Server 2012 giúp khách hàng quản lí công việc khổng lồ hiệu quả hơn
Tuesday, February 14, 2012
Create your first Drupal 7 module with the following steps.
- Create a folder called helloworld in sites/all/modules/custom
- Create a helloworld.info file
- Create a template file page-helloworld.tpl.php in your theme directory
- Enable your module at http://domain.com/admin/build/modules
- Visit http://domain.com/helloworld
Saturday, February 11, 2012
Phần mở rộng *.HTML hay *.HTM
HTML viết tắt của từ Hyper Text Markup Language do đó phần mở
rộng thường dùng là *.html tuy nhiên nó được viết thu gọn thành 3 ký tự cho giống
với các phần mở rộng chung của window là *.htm. Cả hai phần đều giống nhau – không
có sự khác biệt.
Thursday, February 09, 2012
Wednesday, February 08, 2012
Giới thiệu sơ lượt về HTML
HTML
HTML
- HTML viết tắt của Hyper Text Markup Language.
- HTML không phải là ngôn ngữ lập trình.
- HTML là ngôn ngữ đánh dấu bao gồm một tập các thẻ đánh dấu.
- Các thẻ bắt đầu và kết thúc còn gọi là thẻ mở và thẻ đóng.
- Tài liệu HTML (HTML document) là một trang web (web page)
Tuesday, January 31, 2012
Subscribe to:
Posts (Atom)