Desktop Laptop

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Saturday, 6 April 2013

Apple iOS 7

Posted on 12:37 by Unknown

So here’s the latest news about the Apple iOS 7, it says that Apple is going to launched there completely redesigned iOS 7 with the upcoming iPhone 5S. It will hit the store on the late Q2 or early Q3. They might feature all-new Mission Control, Social Hub, Notification Center, and more.

“With the Worldwide Developer Conference looming just months away, all eyes are on iOS 7, and according to Daring Fireball’s John Gruber, the push to meet its development targets is requiring the company to repurpose resources from the OS X team. Ive is reportedly pushing a more modern, “flat” design for the next installment of Apple’s mobile OS.”

Read More
Posted in Apple, iPhone, iPod, iPod/ IPad | No comments

Rainbow Fan

Posted on 12:31 by Unknown

Just paint the fan blades with these three primary colors and you will see rainbow when you hit the on button.
Read More
Posted in Cool n Fun | No comments

Thursday, 4 April 2013

IPL 2013 Live Streaming - Free!

Posted on 08:47 by Unknown
























Click here to Watch Online >
Read More
Posted in IPL | No comments

Thursday, 3 January 2013

HTML Tutorial for Beginner

Posted on 09:06 by Unknown
HTML

Hypertext Markup Language (HTML) is a fundamental tag-based Internet presentation programming language that must be mastered by the majority of information technology professionals. This article explores HTML concepts as well as common tags of the language, though it is emphasized that this article is a supplementary (rather than primary) information source. The intended audience of this article is beginner HTML designers, and continued research is recommended.

HTML Layout 

Tags encapsulate everything in HTML. Tags start with <something> and end with </something>, and they affect elements they encompass. In the last sentence, “and end with” would hypothetically be in the <something> tag. The basic structure of an HTML page includes a head with inner title (as well as meta tags, links, and scripts) and a body that contains elements visible on client computers: 

<html>
<head>
<title>This shows at the top of the window </title>
</head>
<body>
<p>This text displays to the client.</p>
</body>
</html>

Links

The <a> tag can create HTML links that direct clients across pages in a site. The text inside of the <a></a> tags is displayed to the client, the href attribute indicates the destination, and the target attribute indicates to the browser that the link should be opened in a new tab or window:

<a href=”http://mysite.com/” target=”_blank”>Go to mySite</a>
Images as links
Images can have links applied to them as well. Links are applied to images by nesting the image inside of a link. Alternate text can be added for viewers who do not use browsers with image rendering. Alternate text can also be used to strengthen word density, which can raise listings with search engines. The code below demonstrates how to link images:

<a href=”http://mysite.com/”>
<img src=”myimage.gif” alt=”Alternate Text”>
</a>

E-mail

E-mail links are created with the “mailto:” inclusion in the <a> tag. These links (when clicked) will open the viewer’s default E-mail client and enter in the supplied address, subject, and even body of an E-mail. The code below demonstrates how to add an HTML E-mail link:

<a href=”mailto:myAddress@mySite.com”>Contact</a>

Anchors/Bookmarks

Anchors, or Bookmarks, are a special type of link that can be used to navigate within a page. Anchors activate when the client clicks on the underlined text, similar to an external link. It should be noted that the anchor destination must be created before an anchor link will work properly. The first line of code below shows how to name an anchor (destination), and the second line of code below shows how to call an anchor with a link:

<a name=”myanchor”>My Anchor</a>

<href=”#myanchor”>Find My Anchor</a>

HTML Tags

Below is a descriptive list of common HTML tags. Many tags can be nested, and opening tags can contain content properties and event handlers.

<p>This is a paragraph, and it will (in effect) create a double-break </p>

<br> (1 line break)

<hr> (horizontal rule)

<pre>This is preformatted</pre>

<em>This is emphasized, which is like italicize but has semantic meaning</em>

<strong>This is strong, which is like bold but has semantic meaning</strong>

<b>This is bold</b>

<i>This is italic</i>

<u>This is underlined</u>
Meta Tags

<meta name=”keywords” content=”these, are, the, desired, search, phrases” />

Headings

<h1>Biggest heading</h1>
<h2>Little smaller</h2>
<h3>Little smaller still</h3>
<h4>Keeps getting smaller</h4>
<h5>Almost the smallest</h5>
<h6>Smallest heading</h6>

Lists
(Definition)

<dl>
<dt>Paradox</dt>
<dd>Two physicians</dd>
<dt>Well</dt>
<dd>Deep thought for shallow minds </dd>
</dl>

(Ordered)

<ol>
<li>List Element 1</li>
<li>List Element 2</li>
</ol>

(Unordered)

<ul>
<li>List Element 1 </li>
<li>List Element 2</li>
</ul>

HTML Tables

<table>
<tr>
<th>myheader</th>
<th>anotherheader</th>
</tr>
<tr>
<td>mytext</td>
<td>moretext</td>
</tr>
</table>

Frames

<frameset cols=”25%,75%”>
<frame src=”myframe1.htm”>
<frame src=”myframe2.htm”>
</frameset>

Forms

<form name=”input” action=”myexample.asp” method=”get”>

Send me newsletters:

<input type=”checkbox” name=”newsletters” checked=”checked” />
<br />

Send me emails:
<input type=”checkbox” name=”emails” />

<br>
<input type=”submit” value=”Submit” />

</form>

HTML Properties and Scripts

Many tag-specific properties can be applied in individual tag openings. A common CSS attribute with multiple dimensions is the style property. In the code below, target is an attribute of the <a> tag that indicates to the browser how the destination page will open (i.e., new window, parent frameset, self frameset, and top):

<a href=”http://mysite.com” target=”blank_”>mySite</a>
Scripts can also be included in tags (event handlers, specifically), though scripts are most often included in the head section of a page or an external document. The script tag can be used to insert active script directly:

<script type=”text/javascript”>
document.write(“Visible Text”)
</script>
To call a script on the occurrence of an event, a link that calls the function located in the head can be created:

<html>
<head>
<script type=”text/JavaScript”>
function myProcess() {}
</script>
</head>
<body>
<a href=”javascript:myProcess()”>Bookmark</a>
</body>
</html>

Conclusion

HTML is an essential skill for information technology professionals. All of HTML is tag-based, and each HTML tag can have properties that affect inner contents as well as scripts that respond to events. Scripts can be added in an external document, in the head of the page, or in tags of the body.
Read More
Posted in HTML, Tutorials | No comments

Elecom TK-FBP052 Keyboard

Posted on 08:38 by Unknown
Elecom has released a new mini Bluetooth 3.0 keyboard – TK-FBP052. It is powered by only 1x AA batteryand features a 2.4GHz radio frequency (works up to 10 meters), 74 keys and is compatible with Bluetooth 3.0 enabled devices such as iPad, iPhone, PS3, Mac PC and Windows PC. Elecom will start to ship this out in early this month for 4,830 Yen (about $57). You can choose from black or white.
Read More
Posted in Accessories | No comments

Samsung Galaxy Note II sales hit One Million in Korea

Posted on 08:34 by Unknown


Samsung Galaxy Note II is a successful smarty and today it has hit over one million consumers in South Korea, and today Samsung announce it has exceed five million units globally and expected to hit 10M globally in Q1.
Read More
Posted in Mobile, Samsung | No comments

Be your self!

Posted on 08:00 by Unknown

Read More
Posted in Intel, Quotes | No comments
Newer Posts Older Posts Home
Subscribe to: Posts (Atom)

Popular Posts

  • iPhone 4 unpowered amplifier
    This is doesn’t require any form of battery, and easily snugged your iPhone 4. With it, this silicone adds some 12 decibels of sound pressur...
  • Verizon’s Samsung Galaxy Tab coming on 11 November
    While Sprint will release the Galaxy Tab on 14 November, Verizon Wireless will have it three days earlier on 11 November. The Galaxy Tab wil...
  • iPhone 4 can now be your emergency flashlight
    Well well well, what have we got here? Your new iPhone 4 acting as a flashlight? That’s not something Steve Jobs would want the iPhone to b...
  • The iPhone 4’s ‘photonic’ 5MP sensor gets an uber lens
    Steve Jobs might have swear on the iPhone 4’s new 5 Mega-Pixel ‘photonic’ camera, but that does not mean others agree. To some ‘professional...
  • iPhone 4G appears in Vietnam
    Ha!! The iPhone 4G has reached Vietnam, it was show in a Vietnamese forum called TaoViet.tn. According to the site, a Vietnamese businessma...
  • Spain -Euro Cup 2012
  • iPhone Controlled Vending Machine
    MIT graduate Chris Varenhorst has hacked the vending machine and make it works with the iPhone. He created an iPhone app that sent messages ...
  • iPhone 4 jailbreaked, but not for us, ‘meh’?
    George Hotz, the famous dude who hacked the iPhone, dubbed ‘the original iPhone hacker’ has successfully jailbreaked the iPhone 4, for his o...
  • Apple Special Event. September 10, 2013.
  • The Excalibur is not my idea of wall climbing hobby, but might be yours.
    At 121 feet (36.88 meter) in length, “The Excalibur” at the Bjoeks Climb Center in Groningen, The Netherlands, is considered to be the talle...

Categories

  • 2012
  • Accessories
  • Ads
  • Adult Section
  • Altec
  • AMD
  • Android
  • Apple
  • Apple Mac
  • Automobile
  • Blackberry
  • Cool n Fun
  • Dell
  • Dell Streak
  • Design
  • Downgrade
  • Downloads
  • E Book
  • Euro
  • Facebook
  • Fashion
  • Firefox
  • Free Link
  • Gadgets
  • Galaxy S4
  • Game Console
  • Games
  • Gaming Gears
  • Google
  • Handsfree
  • Hardware
  • HDTV
  • HTML
  • HTPC
  • iFaith
  • iMac
  • Intel
  • Internet
  • Internet Tablet
  • Inventions
  • iOS
  • iPhone
  • iPhone 3GS
  • IPL
  • iPod
  • iPod/ IPad
  • Jokes
  • Kitchen
  • Laptop
  • LCD/OLED Display
  • Luxuries
  • Macintosh
  • Memory
  • Microsoft
  • Microsoft Windows Phone
  • Microsoft Windows Phone 7
  • Mobile
  • Motorola
  • Movies
  • Nasa
  • Network
  • News
  • Nokia
  • Norton
  • OS
  • Others
  • PC
  • Photography
  • Picture
  • Portable Drives
  • Quotes
  • RIM
  • Robot
  • Rumors
  • Samsung
  • Sculpture
  • Software
  • Sony
  • Speakers
  • Step by Step
  • Steve Jobs
  • Storage
  • Tablet PC
  • Tablets and Slates
  • Tattoo
  • Technology
  • Timepieces
  • Toys
  • Tutorials
  • TV / Plasma
  • Ubuntu
  • Virus
  • Watch
  • Websites
  • Windows
  • Windows 8
  • Woofer
  • Yahoo

Blog Archive

  • ▼  2013 (60)
    • ▼  October (2)
      • Apple Special Event. September 10, 2013.
      • Some CD-KEYS
    • ►  September (6)
    • ►  August (8)
    • ►  July (15)
    • ►  June (11)
    • ►  April (14)
    • ►  January (4)
  • ►  2012 (19)
    • ►  December (1)
    • ►  August (2)
    • ►  July (12)
    • ►  June (1)
    • ►  January (3)
  • ►  2011 (22)
    • ►  November (5)
    • ►  January (17)
  • ►  2010 (360)
    • ►  December (5)
    • ►  October (59)
    • ►  September (19)
    • ►  August (9)
    • ►  July (51)
    • ►  June (116)
    • ►  May (101)
  • ►  2009 (9)
    • ►  September (8)
    • ►  August (1)
Powered by Blogger.

About Me

Unknown
View my complete profile