தகவல் தொழில்நுட்ப முதல் தமிழ் வலைத்தளம் உங்களை அன்புடன் வரவேற்கின்றது.

Sunday, July 27, 2014

HTML கற்போம் - 5

HTML Images

Example
<html>
<body>
<h2>Norwegian Mountain Trip</h2>
<img border="0" src="/images/pulpit.jpg" alt="Pulpit rock" width="304" height="228">
</body>
</html>

The <img> Tag and the Src Attribute
HTML,இல்  images ஆனது  <img> tag இனால் வரையரை செய்யப்படும்.
<img> tag ஆனது  closing tag கொண்டிருப்பது இல்லை இது attributes மட்டும் கொண்டிருக்கும்
<img src=”image path/image URL” alt=”image description” width="value" height="value">
Src attributes இனால் image இருக்கம் இடத்தினையும், alt attributes இனால் imageபற்றிய தகவலும் வழங்கப்படும் இத்தகவல் வெளியீடாக அமையாது. அத்துடன் படத்தின் நீள அகலங்கள் width, height என்ற attributes இனால் வழங்கப்படும்.

HTML Tables
HTML document இல் Tables ஆனது  <table> tag வரையறை செய்யப்படும்.
Table இல் உள்ள ஒவ்வரு row வும் <tr> tag (Table row) இனாலும், ஒவ்வரு cellலும்<td> tag (table data) இனாலும் வரையறை செய்யப்படும்.


Table Example
<table border="1">
            <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>
Browser இல் பின்வருமாறு காட்சியளிக்கும்.
row 1, cell 1
row 1, cell 2
row 2, cell 1
row 2, cell 2

Saturday, July 26, 2014

HTML கற்போம் - 4

The HTML <meta> Element

<meta> tag (Metadata) ஆனது குறிப்பிட்ட HTML document இன் விபரிப்பை வழங்குவதாக அமையும். இது குறிப்பட்ட HTML  page இன் வெளியீடாக அமையாது. இதனுல் search engines  பயன்படுத்தும் keywords கள் உள்ளடக்கப்படும்.
<meta> tags , <head> element இனுல் வளங்கப்படும்

<meta> Tags - Examples

search engines தேவையான keywords வரையறை செய்வதற்கும், குறித்த இணையத்தளம் பற்றிய விபரிப்பினை மேற்கொள்வதற்கும்,  <meta> tag பயன்படுகின்றது.
<meta name="keywords" content="HTML, CSS, XML, XHTML, JavaScript">
<meta name="description" content="Free Web tutorials on HTML and CSS">
<meta name="author" content="Hege Refsnes">
<meta http-equiv="refresh" content="30">  - Refresh document every 30 seconds:

HTML Formatting Tags
1.
<html>
<body>
<p><b>This text is bold</b></p>
<p><strong>This text is strong</strong></p>
<p><em>This text is emphasized</em></p>
<p><i>This text is italic</i></p>
<p><small>This text is small</small></p>
<p>This is<sub> subscript</sub> and <sup>superscript</sup></p>

</body>
</html>



Browser இல் பின்வருமாறு காட்சியளிக்கும்.
This text is bold
This text is strong
This text is emphasized
This text is italic
This text is small
This is subscript and superscript
2.
<html>
<head><title> font face, font color, font size, and background color</title> </head>
     <body bgcolor=”#c0f2d9”> <! Define background color >
     <h1> <font color=”orange”> Our Country</h1> <! Define font color >
     <p> <font face=”arial” fontsize=”3”> My School </p> <! Define font,font size >
     </body>
</html>


Tag
Description
<b>
Defines bold text
<em>
Defines emphasized text 
<i>
Defines a part of text in an alternate voice or mood
<small>
Defines smaller text
<strong>
Defines important text
<sub>
Defines subscripted text
<sup>
Defines superscripted text

Friday, July 18, 2014

HTML கற்போம் - 3

HTML Attributes
  • HTML elements ஒவ்வொன்றும் attributes கொண்டிருக்கலாம்
  • ஒவ்வொரு Attributes உம் குறிப்பிட்ட element  க்குரிய மேலதிக தகவலைத்தரும்.
  • Attributes ஒவ்வொன்றும் ஆரம்ப tag இல் குறிப்பிடப்படும்.
Example
<a href=" http://www.schoolnet.lk ">This is a link</a>  இங்கு href என்பது attributeஆகவும்  http://www.schoolnet.lk என்பது குறிப்பட்ட attribute க்குரிய Valueவாகவும் காணப்படும்.

HTML Lines
 <hr>tag ஆனது HTML page இல்  horizontal line உருவாக்கப்பயன்படும்.
Example
<p>This is a paragraph.</p>
<hr>
<p>This is a paragraph.</p>
<hr>
<p>This is a paragraph.</p> 

HTML Comments
HTML code இனை விழங்கி கொள்வதற்காக இதனை பயன்படுத்துவர். இதனை உங்கள் browser இல் வெளியீடாக தராது.
<!-- This is a comment --> 


HTML Line Breaks
ஒரு குறிப்பட்ட பந்தியினுல் புதிய வரியினை உருவாக்குவதற்கு <br> tagபயன்படுத்தப்படும்.
Example
<p>This is<br>a para<br>graph with line breaks</p>
 <br> tag ஒரு empty HTML element ஆகும். இது end tag இனை கொண்டிருக்காது.

The HTML <head> Element

<head> tag இனுல் scripts, meta, browser ,style sheets க்குரிய கட்டளைகளை கொண்டிருக்கும். பின்வரும் tags , head பகுதியினுல் உள்ளடக்கப்படும். <title>, <style>, <meta>, <link>, <script>, <noscript>, <base>.

The HTML <title> Element

<title> tag ஆனது குறிப்பிட்ட HTML document க்கான தலைப்பை வழங்குவதற்கு பயன்படும். இது ஒரு HTML document க்கு கட்டாயமனது ஆகும்.
  • browser toolbar இன் தலையங்கமாகவும்.
  • favourite ஆக browser இல் சேமிக்கப்படும் கோப்பின் பெயராகவும்.
  • தேடல் இயந்திரத்தின் தேடல் பெயராகவும்(search-engine results) காணப்படும்.

<html>
                <head>
                                <title>Title of the document</title>
                </head>

                <body>
                                The content of the document......
                </body>

</html>

Wednesday, July 16, 2014

Ubuntu update செய்யப்பட்ட கோப்புகளை தேவையான போது பயன்படுத்தும் முறை

Ubuntu வில் update செய்யப்படும் போது தரவிறக்கம் செய்யப்படும் கோப்புக்கள் கணினியில் நிலையாக பேணப்படுகிறது. இதேபோல் Software center ஊடாக உள்ளீடு செய்யப்படும் மென்பொருட்களும் நிலையாக பேணப்படுகின்றது. இதைன நாம் பிரதி செய்து வைத்திருப்போம் எனில் எமக்கு தேவையான போது மீண்டும் மீணுடும் பதிவிறக்கம் செய்யாமல் நமது பிரதியில் இருந்தே பயன்படுத்திக் கொள்ள முடியும். 
இக்கோப்புக்கைள பிரதி செய்யும் முறை

1.  File System/Var/Cahe/apt/archives என்ற directory யில் update செய்யப்பட்ட மென்போருட்கள் காணப்படும் (.deb என்ற பிற்சேர்கையுடன் உள்ள கோப்புக்கள் மட்டும்) இதனை  உமக்கு விரும்பிய இடத்தில் பிரதி செய்து வைத்திருக்கவும்.
2.  இவ்வாறு பதிவிறக்கம் செய்யப்பட்ட மென்போருட்களை உள்ளீடு செய்யும் முறையினை Ubuntu மென்பொருள் உள்ளீடு செய்யும் முறை என்ற பதிவின் ஊடாக அறிய முடியும். (" sudo dpkg -i <your copy location>/*.deb " என்ற sudo code இனை பயன்னடுத்தும் முறை)

எனவே ubuntu format செய்தாலும்  update செய்யப்பட்ட மென்போருட்களை மீண்டும் இணைய இணைப்பு இல்லாமலே உள்ளீடு செய்யமுடியும்.

Tuesday, July 15, 2014

Ubuntu வில் தமிழ் Unicode பயன்படுத்தும் முறை

நாம் Windows இயங்குதளத்தில் தமிழ் Unicode இனை பயன்படுத்துவதற்க்கு NHMwriter அல்லது இகலப்பை அல்லது பொங்குதமிழ் போன்றவற்றை பயன்படுத்துவோம். ubuntu வில் தமிழ் இடைமுகத்தினை அமைப்பதற்க்கு m17n என்ற பொதியையும், ibus என்ற மென்பொருளையும் நிறுவிகொள்ளுதல் வேண்டும். 

Terminal இனுள்  பின்வரும் ஆணையை வழங்கி உங்கள் மென்பொருட் களஞ்சியத்தைப் புதுப்பித்துக்கொள்ளுங்கள். கடவுச்சொல் கேட்டால் உங்கள் பயனர் கடவுச்சொல்லைக் கொடுங்கள்.

" sudo apt-get update "

m17n பொதிகளை நிறுவுவதற்கான ஆணையை வழங்குங்கள்.

" sudo apt-get install m17n-db m17n-contrib ibus-m17n "

அடுத்து ibus கட்டகத்தை அமைத்துக்கொள்ளவேண்டும். இதற்கு ibus-setup எனும் மென்பொருள் உதவும். . (இதனை  Applications பட்டியலிலிருந்தே பெறலாம் என்றாலும் வசதிக்காக terminal வழியாகச் செய்வதற்குச் சொல்லித்தருகிறேன்). பின்வரும் ஆணையை வழங்குங்கள்.

" ibus-setup "

input method க்கு சென்று ஆங்கில தமிழ் எழுத்துருக்களை Add செய்தல் வேண்டும்
General என்ற பகுதியில் எமக்கு தேவையான வாறு shortcut key களை வழங்க முடியிம். 

பாமினி வடிவத்தில் யுனிகோடை தட்டெழுத விரும்புபவர்கள் “பாலினி” என்ற உள்ளீட்டமைப்பை  தனியாக நிறுவிக்கொள்ளவேண்டும்.


அதனைத் தரவிறக்கிக்கொள்ள பின்வரும் ஆணையை terminal இல் வழங்குங்கள்.

wget http://mmauran.net/downloads/ta-balini.mim "

தரவிறக்கி முடித்ததும் அக்கோப்பினை m17n அடைவிற்கு அனுப்ப வேண்டும். அதனைச்செய்ய, பின்வரும் ஆணையைச் செயற்படுத்துங்கள்

sudo cp ta-balini.mim /usr/share/m17n/ibus ”

ஒருமுறை கணினியை logout செய்து மறுபடி login செய்யுங்கள்.

முன்னரே காண்பித்தபடி ibus-setup மென்பொருளைப்பயன்படுத்தி பாலினி விசைப்பலகையை add செய்துகொள்ளுங்கள்.

Thursday, July 10, 2014

HTML கற்போம் - 2

HTML Headings

 HTML ஆவனத்தில் தலையங்கம் வழங்குவதற்கு பின்வரும் உதாரணங்களை அவதானிக்கவும். <h1>,<h2>,<h3> போன்ற tag பயன்படுத்துவதில் உள்ள வேறுபாடு யாதேனில் அவற்றுக்களுக்கு அடையில் எழுத்துருக்களின் அளவு முறையே குறைந்து செல்வதாகும்.

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

உதாரண நிகழ்சித் திட்டம்.
<html>
<body>
<h1>This is a heading 1</h1>
<h2>This is a heading 2</h2>
            <h3>This is a heading 3</h3>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>
</html>
இதனை Note pad இல் copy செய்து உமது HTML document ஆக save செய்து, உங்களது web browser இல் open செய்து அவதானிக்கவும்.


HTML Paragraphs
HTML இல் பந்தி அமைப்பு முறை  <p> tag இனால் வகைக்குறிக்கப்படும்.
Example
<p>This is a paragraph.</p>
<p>This is another paragraph.</p> 


HTML Links
HTML இல் மீ இணைப்புக்கள் (links) <a> tag இனைால் வகைக்குறிக்கப்படும். இணைய பக்கங்களை இணைப்புக்களாக வழங்கும் போது <a href=”your URL”>link text</a> என்ற முறமை பயன்படுத்தப்படும்
Example
<a href="http://www.schoolnet.lk">This is a link</a> 

HTML Links - The target Attribute
இவ் attribute குறிப்பிடப்பட்ட  link எவ்வாறு தோன்றவேண்டும் என்ற நிலைப்பாட்டினை தெரிவிக்கும்
Example
<a href=" http://www.schoolnet.lk /" target="_self" > Visit W3Schools!</a>
அதே window வில்oppen செய்யப்படும்.
<a href=" http://www.schoolnet.lk /" target="_blank">Visit schoolnet!</a>
New tap இல் oppen செய்யப்படும்.

HTML Images
HTML ஆவனத்தில் படங்களை இணைப்பதற்கு <img> tag பயன்படுத்தப்படும்.
Example
<img src="schools.jpg" width="104" height="142">
Note: இங்கு filename/path உடன் அதற்குரிய size என்பன வழங்கப்படல் வேண்டும்.

How to Remove shortcut virus from PC/Laptop/Pen drive – Solved!

This post is about Remove shortcut virus, In our PC/Laptop or in Pen drive we generally see one shortcut type folder which created automatically, many times when we use internet and downloading something then it might be that shortcut virus downloaded within your downloaded file and many times when we transfer the data from one computer to another computer and if one computer is affected from shortcut virus then surely other attached computer will also affected by shortcut virus in between data transfer, many times we insert our pen drive or any other external drive into other’s PC which are already affected by shortcut virus then our pen drive or external drive will be affected from shortcut virus.
Remove shortcut virus
I personally faced the shortcut virus problem in my PC, the shortcut virus damage the computer OS slowly, slowly, shortcut virus will create shortcut folder and file name same as original folder and file name and if you click on that shortcut virus files and folder then it will infect your PC poorly.
For the solution of the Shortcut Virus problem I am going to write some easiest way to remove shortcut virus from PC/Laptop/Pen drive and other external drives. There are lots of methods available to remove shortcut virus, including CMD, Registry entry, free software, Paid software, using .Dat file etc. Here i will explain the way to remove shortcut virus from computer, Remove shortcut virus USB (Delete Shortcut Virus).
Remove shortcut virus

Remove Shortcut virus from PC from PC/Laptop/Pen drive – Methods

1) How to Remove Shortcut virus using CMD

If you are suffering from the shortcut virus problem, then surely you tried to remove shortcut virus files manually, but files are not removed, they show some error messages, so for the solution of this error message simply follow the below step and remove shortcut virus from your PC.
Step 1) Open CMD (Command Prompt – DOS)
Step 2) Write the below command
attrib -h -s -r -a /s /d Name_drive:\*.*
Simply replace the Name_drive with your actual drive letter, for example, if you want to remove shortcut virus from C drive, then type attrib -h -s -r -a /s /d c:\*.*
Step 3) Hit enter button
Step 4) Now, after that all the shortcut virus files and folder will be normal files and folder form simply go and delete the shortcut virus files and folder

2) How to Remove Shortcut virus using a .bat file

Bat file is nothing but an executable file which can create in notepad and directly executed by double clicking on it, you can also do the above method, process using .bat file, I know you are thinking that why he writes same method twice, but guys you have noticed that if your all drives are infected from shortcut virus then you have to run above command separately for each and every drive, it takes your lots of important time so the solution of this problem I am writing the new method to remove shortcut virus.
Step 1) Open notepad file
Step 2) Copy and paste the below code into a notepad file
@echo off
attrib -h -s -r -a /s /d Name_Drive:\*.*
attrib -h -s -r -a /s /d Name_Drive:\*.*
attrib -h -s -r -a /s /d Name_Drive:\*.*
@echo complete.
Step 3) simply replace the Name_Drive with your infected drive name, if you have more than 3 drive then simply copy and paste the command.
Step 4) Save the file with name removevirus.bat
Step 5) Now simply close the file and run it
Step 6) After that all of your Shortcut virus files and folder are in normal form, now go and remove the shortcut files and folders

3) How to Remove shortcut virus using ‘Shortcut virus remover software’

This method is the easiest and best method to remove shortcut virus from PC, there is a strong reason behind it, In above methods (CMD and.Bat file) you have to run command manually and delete each and every shortcut virus file and folder manually, I know you are also lazy like me ;) who don’t want to waste their time in executing commands and delete files manually, so for the solution of this problem follow the below steps and believe me this software helps you a lot and remove all of your shortcut virus from your PC/Pen drive.
Step 1) First of all download the “Shortcut Virus Remover software free download” from below link
Step 2) Open the shortcut virus remover software
Note: The software it doesn’t need to install, it directly run
Step 3) Select the Pen drive or Computer (Select from which you want to remove viruses)
Remove shortcut virus
Step 4) Now selects the Drives and click on the Scan button
Remove shortcut virus
Step 5) After that click on the Delete button
That’s it, now all of your shortcut virus files from your PC/Laptop/Pen drive are removed.
I hope you like my article and methods to “Remove shortcut virus from computer/ Laptop/ Pendrive”, You can also use the above methods to Remove shortcut virus from external hard disk,  if you have any type of doubt or question then please let me know in below to comment so that I will try to remove your doubts and answer your questions.

Wednesday, July 2, 2014

HTML கற்போம் - 1

HTML என்பது என்ன?
HTML என்பது இணைய பக்கத்தினை உருவாக்குவதற்கான ஒரு மொழியாகும்
  • Hyper Text Markup Language என்பதன் சுருக்கமே HTML ஆகும்
  • HTML  ஒரு markup மொழி என அழைப்பர்
  • ஒரு markup மொழி ஒரு தொகுதி markup tags இனை கொண்டிருக்கும்
  • ஒவ்வரு tags உம் HTML document உள்ள உட்பகுதியினை விபரிப்பதற்கு பயன்படுத்தப்படும்.
  • HTML documents ஆனது HTML tags இனையும்  plain text கொண்டு காணப்படும்
  • HTML documents  இனை web pages என அழைப்போம்
HTML Tags
HTML markup tags இனை HTML tags என அழைப்பர்
  • HTML tags உள்ள keywords (tag names) இனை angle brackets ( <html>) இனால் குறிக்கர்
  • HTML tags ­­பொதுவாக சோடிகளாக காணப்படும் (<b> and </b>)
  •  சோடிகளாக காணப்படும் tag இல் முதலாவது tag start tag எனவும்,இரணடாவது tag end tag எனவும் அழைப்பர்.
  • இரன்னடாவது tag இல் forward slash அப்புறமாக tag name காணப்படும்
<tagname>content</tagname>

Web Browsers

web browser ( Google Chrome, Internet Explorer, Firefox, Safari)இன் பயன்பாடு என்னவெனில் HTML documents இனை web pages ஆக மாற்றி தருவதாகும். browserஆனது HTML tags இனை வெளியீடாக காட்டாது tags இனால் வகைக்குறிக்கப்படும் உள்ளடக்கத்தினை web page இல் வெளிக்கட்டும்.
HTML Page Structure
<html>
<body>
<h1>This a heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>
</html>


HTML Versions
Version
Year
HTML
1991
HTML+
1993
HTML 2.0
1995
HTML 3.2
1997
HTML 4.01
1999
XHTML 1.0
2000
HTML5
2012
XHTML5
2013
Writing HTML Using Notepad or TextEdit
HTML editor ஆக பின்வருவனவற்றுல் எதாவது ஒன்றினை பயன்படுத்த முடியும்:
  • Adobe Dreamweaver
  • Microsoft Expression Web
  • CoffeeCup HTML Editor
  • Notepad
Notepad (Windows) or TextEdit (Mac) போன்றவற்றினை HTML editor ஆக பயன்படுத்துவது இலகுவானதுபின்வரும் படிமுறைகள் ஊடாக web pageஇனை Notepad இல் இலகுவாக உருவாக்க முடியும்.
Step 1: Start Notepad
Step 2: Edit Your HTML with Notepad
Step 3: Save Your HTML
பின்வரும் எதாவது ஒரு file extension ஆக .htm or .html. இனை பயன்படுத்தி சேமிக்கவும்.
Step 4: சேமிக்கப்பட்ட  HTML இனை உங்களது Browser இல் திறந்து கொள்ளவும்

Blogger Tips and TricksLatest Tips For BloggersBlogger Tricks

சொயற்படுத்துங்கள்

Blog Archive

Total Pageviews