Tuesday, January 14, 2014

How to create a Web Page ( Tutorial 2 )

0 comments

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: bolditalic,underlinestrikeoutsuperscriptsubscriptteletype, 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!





How to create a Web Page ( Tutorial 1 )

0 comments


This page explains everything that is needed for anyone wanting to create their own web page. Below this paragraph is the table of contents. Click on any of the content subjects and it will take you to that section of the guide. To return to the table of contents at any time, click the "Return to Index" link in the frame on the side of the page. I hope this guide is helpful.



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 or Ewan 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 pressing control-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 contentsabove to decide how, and what to put on your page.






AOMEI Partition Assistant - Professional and complete disk partition solution for Windows OS

0 comments




  • Partition Management: Resize/Move, Merge/Split/Align, Create/Delete/Format Partitions, Copy Disk and Partition etc.
  • Partition Wizards: Extend Partition Wizard, Migrate OS to SSD Wizard, Windows To Go Creator, and etc.
  • Others: Recover Partitions, Create Bootable CD, Wipe Hard Disk Drive, etc.










Overview




AOMEI Partition Assistant contains more than 30 valuable functions, which can manage your hard disks and 
partitions in all dimensions. These features can fix the problem about "low disk space", address the problem of  irrational disk partition, and help you easily realize to repartition a hard drive without loss of data. If you need to migrate system to SSD or copy one hard drive to another new and so on, the program can also achieve your purpose flexibly.



Download Here





Thanks for coming by and taking your time to read this post :) I hope you have learnt something today and shared this. Now I'd love to hear from you. Got any views, thoughts and questions related to the post? I'm all ears here. Add your comment.


Fix Desynchronized Video and Audio with VLC

0 comments
There are few things more aggravating than trying to watch a video whose audio is about one second too slow. Here's a quick fix for the problem in VLC.



You should use VLC Media Player to do that. I'll list the steps below,

01. Go to Tools -> Track Synchronization.

02. Beside the label called "Audio track synchronization", must be a timer.
If the audio is delayed, type the gap between the lip-sync(in seconds) and put a -(minus) before the time. (It should look like -1.000, if the delay is 1sec.)

If the audio is hastened, just type the number of seconds without minus sign.

03. Then check whether it's synchronized properly or not. If not succeeded, then adjust the time.

Note: 1.567 = 1 -> Seconds; 567 -> milliseconds. The period(.) is really important if the audio sync time differs in milliseconds.


 OR


while playing in VLC
press K   ( for 1 sec delay 1000MS )







You like the Post?  Then Please Share it...





3 Ways to use Android phone as wireless Mouse and Keyboard for PC using WiFi or Bluetooth

0 comments

WiFi Mouse



Transform your phone into a wireless mouse, keyboard and trackpad using WiFi Mouse. WiFi Mouse supports speech-to-text as well as multi-finger trackpad gestures. WiFi Mouse enables you to control your PC, MAC or HTPC effortlessly through a local network connection.

If you don't have AP(WiFi hotspot), you can use android phone/PC as hotspot.

Features:
* Mouse curser movement
* left and right click support
* Middle mouse button scroll
* Remote keyboard input
* PC/Mac hot keys and combination key(Pro only)
* Speech-to-text input for all languages
* Mouse & keyboard full screen
* Auto-connect on application startup
* Media player controller(Pro only)
* Explorer controller(Pro only)
* PPT Presentation controller(Pro only)
* Compatible with XP/Windows Vista/Windows 7/Windows 8/Mac OSX/Linux (Ubuntu)

Gestures:
* Tap-to-click
* Tap and move for drag
* Two finger tap for right click
* Two finger scroll
* Pinch to zoom(pro)
* Three finger drag & drop or highlight
* Four finger swipe down to show desktop(Pro only)
* Four finger swipe up to maximise current window(Pro only)
* Four finger swipe sideways to change current window focus(Pro only)
* Left handed mouse support (swap left and right mouse click)

Download - WiFi Mouse for Android , WiFi Mouse Pro version for Android

                   WiFi Mouse Server for PC




RemoteDroid

RemoteDroid - screenshot thumbnail


Remote Control Your Computer With Your Phone

RemoteDroid turns your phone into a wireless keyboard and mouse with touchpad, using your own wireless network. It's an application for phones and tablets running Google's Android operating system.

Key Features

FREE VERSION

  • Touch-screen mouse control
  • Two onscreen mouse buttons, with right-click/control-click functionality
  • Use in either portrait or landscape mode
  • Works with any WiFi network
  • Compatible with Mac, Windows and Linux operating systems

PRO VERSION
($1.99)

All of the above features, plus automatic connection over your wireless network -- no IP address entry required. Pro users will also receive free upgrades with new features, including Swype compatibilty (coming soon!).


Requirements
  • Java SE Runtime Environment 1.5 or higher. Get it here.
  • Some sort of wireless network connection.
  • A device running the Android operating system.




Ultimate Mouse 

Ultimate Mouse

Description
The BEST way to take control of your computer's mouse and keyboard wirelessly through wifi or bluetooth. Install the Ultimate Control Receiver program on your computer (PC, Mac or Linux) and select it from the list displayed on your phone.
In the "touch mode" the screen works as a touchpad. And thanks to the built in gestures, you can scroll, click by tapping or right-click performing a long press.
The "pointer mode" allows you to move your mouse by moving your phones in the air, similar to the Wii remote. This option is only available for phones with gyroscope capabilities (nexus s, galaxy S2, galaxy nexus, optimus 2x...)
Enjoy the Ultimate Control experience!

Ultimate Mouse Lite - screenshotUltimate Mouse Lite - screenshot thumbnailUltimate Mouse Lite - screenshot thumbnail


Gestures

Take full advantage of the multitouch screen of your phone to interact with your computer in the most intuitive manner. This way it is possible to move the mouse, perform clicks, "perforn drag & drop" actions or scroll through a document or web page just by a simple gesture.

Tap

Perfor a simple tap as you would do on a touchpad to perform a click on the controlled computer. The gesture can be repeated several times to perform, for example, a double-click.

Long Tap

Maintaining the finger on the screen triggers a right click action, also giving a haptic feedback to notify the action.

Move / Tap + Move

Swipe your finger on the screen and make the cursor of the computer move. If you do this after performing a tap, the mouse will remain clickd allowing you to select text, drag and drop items...

Scroll

Perform an move gesture with two fingers on the screen to trigger a scroll action, just as if you were turning the wheel of your mouse.

                   Ultimate Control ( Ultimate Mouse ) Server for PC




Thanks for coming by and taking your time to read this post :) I hope you have learnt something today and shared this. Now I'd love to hear from you. Got any views, thoughts and questions related to the post? I'm all ears here. Add your comment.

Sunday, January 12, 2014

My Pocket Office - Docx document reader for Nokia S40

0 comments
My Pocket Office - docxMy Pocket Office - docxMy Pocket Office - docx


The first ever document reader for Nokia phones is ready and absolutely free for you. Grab it! Now, no need to check docs only on your desktop. My Pocket office is designed to read docx files in a mobile friendly UI. 

Download Here





Thanks for coming by and taking your time to read this post :) I hope you have learnt something today and shared this. Now I'd love to hear from you. Got any views, thoughts and questions related to the post? I'm all ears here. Add your comment.



How to Hide or Unhide Hard Disk Partition in Windows 7/Vista/XP

0 comments
Hiding a partition or volume from my computer or explorer is preventing that partition from displaying, but it doesn't mean erasing any data or deleting the volume. Windows OS Disk management system allows hiding drives except the System drive where the OS is installed and the System reserved volume. So, anyone who has administrative privilege or the administrator of the Windows machine can do this task. And the basic trick is, without any drive letter (Ex: C:, D:, E: etc.) Windows OS doesn't recognize any drive or partition and here we are going to remove that letter temporally.


How to hide a drive: 
     1. Click right mouse on the computer and select Manage. Select the disk management under storage from the left pane. Or, you can also get the Disk management typing diskmgmt.msc in the run and pressing enter.
Disk Management

     2. From there click right-mouse on which drive you want to hide and select Change Drive Letters and Paths.
Change Drive Letter or Path

     3. Now select remove. Don’t worry! This action just removes the drive letter.
Remove drive

     4. Pressing on the Remove a warning message will be shown and accept it by clicking on yes. It’s just telling you that all programs installed on that drive won’t work or this drive is opened by another program. 
Warning Message 

It’s done! Your selected drive is hidden now. 

The hidden drive won’t be appearing to the administrator of the OS unless it is unhidden. 



How to unhide the drive: 
    1. Open the Disk Management as shown above.

    2. Right mouse click on the drive which is hidden/removed. Tips: the hidden drive doesn’t contain any drive letter. 

    3. Choose the Change Drive Letters and Paths and select Add to add drive letter or path to the hidden drive.
Add hidden drive

Assign drive letter

     4. At last choose a drive letter to assign the drive/partition and press on OK. Wow! The hidden partition is displayed in an explorer or my computer.

That's it! No data is lost or damage. Even the installed files are working again without any errors. From now you shouldn't need any extra software to hide or unhide your PC's drives. And if it helps you, why don't you share this?






You like the Post?  Then Please Share it...