Archive for February, 2010

Use These 7 Tips to Write Your Most Popular Post Ever

One popular post can bring your more traffic and links than a month's worth of your usual content. In this post, I want to set you a challenge with ...

 

One popular post can bring your more traffic and links than a month’s worth of your usual content. In this post, I want to set you a challenge with the potential to launch your blog into the stratosphere. So make sure to use these tips and make the next post you write your most popular post ever.

1. Time is more important than talent – Work on something for eight hours and you can bet it will be good. Spending more time on an article means you can refine, format and fill your post with more values. My advice is, take the time to really craft your content. It will show in the finished product.

2. Use your best idea – A post will never become wildly popular unless it fulfills a need, and does so emphatically. To generate ideas, there are lots of questions you can ask yourselves. For example, what is something your niche wants but hasn’t got yet?

3. Use formatting to your advantage – These days, a post can never become popular without the help of social media. However, social media users are notoriously spoiled for choice. Use formatting to emphasize the best aspects of your post. Hone in on your funniest lines, your most profound bits of advice, your best resources. Make them stand out.

4. Brainstorm headlines – Headline is important as it serves the purpose of drawing attention of readers to read your articles. If a headline does not instantly give an indication – i.e., an idea or hint, not the entire story – of not only what the page is all about but also the reasons why people should read further the moment they read it, it will actually deter prospects. So make sure to take some time to brainstorm your headlines.

5. Examine what worked before – Study your most popular posts so far. What’s common about them? Why did they work? What needs did they address? In creating your most popular post, it’s important to learn by example and build on what has worked for your blog in the past. Another good idea is to analyze the most popular posts on other blogs in your niche. Why did they work? What’s remarkable about them? You can transfer those qualities over into what you write.

6. Utilize your network – If you want people to Digg, Stumble or Reddit your post, there’s no reason why you need to sit back with fingers crossed and hope it happens. Ask them. Your loyal readers like you. You entertain them, or teach them, or help them. If voting is a simple matter of clicking a link they’ll be more than happy to do so. Ask for votes in your post and email readers and social media influencers. In most cases you will need to get the snowball rolling. After that, others will do most of the work for you.

7. Proof-read for typos and glaring grammatical errors – You wouldn’t go out of the house with dirty hair or missing a sock, so why would you publish spelling mistakes? Respect your readers by polishing up your stuff.

Nik Imran is the author of IMakeABlog, a blog that provides guide on blog setup. You can check out his guide on how to install wordpress.

Working With HTML and XHTML in Adobe Dreamweaver CS4

 

HTML is a markup language used to create web pages designed to be accessed across the World Wide Web using browser software such as Internet Explorer or Firefox. The version of HTML in current use is referred to as XHTML, a stricter, rationalised version of the original HTML specification. One important fact to note about HTML and XHTML pages is that they describe the content and structure of the page rather than the position and presentation of the elements on the page.

The first difference between an HTML and XHTML page is the document type definition. There are several ways in which this specification can be made in Dreamweaver. One of the simplest is to go to the Modify menu and choose Page Properties. Here, in the Title/Encoding category, one of the options reads Document Type (DTD).

There are quite a few options available in the drop-down menu next to this setting, some relating to HTML version 4 and some to XHTML version 1. These DTD settings specify the rules that the mark-up language must follow so that the browsers can render the content correctly. For any new content you may be creating, the best specification to choose is XHTML 1.0 transitional since it uses the current XHTML specification while allowing backward compatibility with slightly older browsers.

When looking at an HTML page, the structural content may not be immediately apparent. However Dreamweaver provides a number of useful tools for keeping tabs on the structure of your web page content. One of these is called the Tag Selector. Wherever the cursor is positioned, the HTML code relating to that part of the page is displayed in the bottom left of the page on the Status Bar in an area known as the Tag Selector.

When the browser reads the page, the tags surrounding text and other elements communicate to the browser the structural importance of each element. Thus, for example, the H1 tag tells the browser that a piece of text is a major heading, while the H2 tag signifies a sub-heading, and so on. When these tags are displayed in the Tag Selector, you can get an idea of the structure of the page and you can also click on any tag to select the element(s) it contains.

The tags tell the browser the structural importance of each element but the page doesn’t contain any information that helps the browser decide how each element should be displayed. This job is done by CSS (Cascading Style Sheets). An XHTML page is still basically an HTML page. However, the syntax used is stricter.

One example of this difference is that XHTML is case sensitive while HTML is not. In XHTML, all tags are lowercase so the H1 tag has to be written h1. In HTML, h1 or H1 can be used.

In XHTML, the closing tag is obligatory: in HTML it is permissible to have an opening tag without a closing tag. One such example is a horizontal rule (hr) which creates a dividing line between two sections on a webpage. This element is represented by a single tag, since it can never be used as a container. In XHTML, there is a special syntax for such elements: a single tag which is both an opening and closing tag (hr/). In HTML, the single opening tag is used with no closing tag (hr).

In summary, XHTML is the current version of HTML and this is the standard that you should use for any new projects. However, existing projects that you may inherit may well contain HTML rather the XHTML. Therefore, you should be aware of both. Remember also that HTML and XHTML describe only the structure of web page content: neither of them should contain information regarding the presentation and display of this content. The display and presentation of web content should be done using CSS.

Author is a developer and trainer with Macresource Computer Solutions, an independent computer training company offering Adobe Dreamweaver Classes at their central London training centre.

Validation XML Files With XML Schema

 

XML schema definition languages are derived from the recommendations of the World Wide Web Consortium (W3C). They use XML 1.0 syntax and their role is to explicit describe the structure of XML documents and constrain the data which they may contain. They offer a distinct improvement on the more limited schema features offered by the Document Type Definition (DTD) recommendation which formed part of the original XML specification released in 1998. The most widely used schema language is the one defined by the W3C in 2001: W3C XML Schema. However, there are alternatives, such as RELAX NG and Schematron.

Schema documents are the more sophisticated successors to DTDs and overcome some key limitations associated with them. Firstly, DTDs do not support data types. Secondly, DTDs do not support namespaces. Thirdly, DTDs do not allow developers to accurately define the number of permitted occurrences of elements within their parent element.

XML schema documents describe the structure of an XML instance document by defining what each element must or may contain. An element is limited by its type. For example, an element of complex type can contain child elements and attributes, whereas a simple-type element can only contain text. The diagram below gives a first look at the types of XML Schema elements.

Three main purposes are fulfilled by schema documents. Firstly, they can be used to validate XML documents. Secondly, they can be used as a dictionary or grammar for the creation of a given class of XML document. And, thirdly, they can be used to provide documentation for XML documents.

Each XML schema is itself an XML document and contains definitions of all elements and attributes permitted in a given class of XML documents. The schema also specifies the structure or hierarchy to which elements must adhere and the type of content each particular element may contain. Elements may be of the simple or complex type. Complex type elements may contain child elements as well as attributes. Simple type element may only contain data. XML documents using a particular schema are referred to as instances of the schema. An XML instance that correctly adheres to its associated schema is said to be valid.

Validation is usually the principal role of schema documents. Validation offers many benefits. It ensures the consistency of data within a document. It ensures that data has the right structure and internal hierarchy. It ensures that data within the document structure is of the correct type. It allows us to receive data from multiple sources.

Most XML documents are created by programs and scripts designed to extract information held in databases and transform it into XML. However, it is also possible for human beings to create XML documents. Schemas can be used during this process to assist in the document creation process. XML schemas also provide a mechanism for documenting XML documents and form an important part of the specification of XML vocabularies.

The The writer of this article is a training consultant with Macresource Computer Training, an independent computer training company offering XML Classes in London and throughout the UK.

The 7 Signs To Tell Your Blog Is On The Right Track

 

I’m sure you have heard that blogging takes time to take off. Yet I have seen many bloggers who make the mistakes of giving up early when the matter of fact is, they are on the right track. So how do you tell?

1. Growing subscriber count – If your blog’s subscriber base is growing, even slowly, you are making some progress. Gaining trust and subscribers is not easy, so try not to get your expectations unrealistically high. If you have realistic goals for subscriber growth you will more likely be able to feel good about your progress and stay consistent with your blogging.

2. Increasing Numbers of Inbound Links – For bloggers, incoming links are also representative of how well you are known in your industry and your number of links will grow as you start to become recognized as an authority.

3. Increasing numbers of valuable comments – The more comments you have, the better. If you are seeing an increase in the number of comments in your blog, make sure to participate in the discussion as well. If you have little to no comments, try commenting on other blogs for starters. This way, other bloggers will be aware of your blog. If they find your blog interesting, they would usually leave a comment.

4. Increasing visitors and pageviews – Many bloggers are stats junkies. While growth in traffic isn’t always representative of meeting or surpassing your blogging goals, it certainly isn’t a bad thing. There are many channels for you to market your blog and increase your visitors. Guest posting and making use of social media is some of the ways to reach out to new readers. If you make use of these channels, over time your blog stats will increase as more and more readers visit and subscribe to your blog.

5. Consistent posting – Consistent posting is perhaps one of the most important element to blogging success. For new bloggers, in order for your visitors to pay attention to your blog, it’s vital for you to provide new articles for them to read. If your blog looks dead, the chances are, they won’t subscribe. If you are posting consistently, you’re already one step ahead of the vast majority of bloggers.

6. Improving quality of articles – Though this may be a subjective issue, but I think most bloggers can make good comparison through going through their older posts. If the quality of your articles improves overtime, which it should, you’re on the right track.

7. An increasing network of bloggers – Networking is crucial. Look at it this way; bloggers support each other. Instead of seeing other bloggers as your competitors, try to see them instead as your partner. By networking with other bloggers, you are more likely to get links, guest blogging opportunities and comments.

Nik Imran is the author of IMakeABlog, a blog that provides guide on how to make a blog. If you are interested in building your own blog, check out his guide on how to install wordpress.

Dreamweaver Training Can Help To Demystify Web Development

 

Working for a company that runs Dreamweaver training courses, I am increasingly finding that there is no longer a typical user of this great web development program. Dreamweaver users now seem to come from all different types of company and from all walks of life: private individuals, financial people, marketing people, people in the health service, academicians It seems everyone needs to learn the basics of web development nowadays.

Just as the use of a graphical interface has changed computing, making it more user-friendly, the use of Adobe Dreamweaver renders people with limited understanding of web construction capable of putting together a quality site. It is also an excellent platform for learning how web sites should be put together. For example, when you create a new page, Dreamweaver lets you choose from a series of standard layouts based on CSS (Cascading Style Sheets), the recommended specification for creating web pages. The code produced by Dreamweaver contains useful comments explaining how the page layout works.

Many small organisations have already learned to rely on Adobe Dreamweaver to build and manage their own website, creating and modifying pages and then uploading them via FTP to make them live and available to the public. Those organisations with a more urgent need to establish a web presence may still turn to a professional web development companies to get them started and then use Adobe Dreamweaver when changes need to be made, often saving themselves a small fortune.

Another way that organisations can save money is by hiring web designers to create Dreamweaver templates and then basing their website on these templates in-house. This also has the benefit of giving organizations control of their site right from the outset.

Although Dreamweaver is pretty easy to use, it is not likely that many users can simple load it onto their machine and start using it like a pro. Most people will benefit from having some form of Dreamweaver training. This will allow them to learn the essential aspects of the program and the process of creating basic sites and making them live. An effective Dreamweaver training course will also give users an insight into the underlying web technologies and the code which Dreamweaver generates as the users create their pages using visual techniques.

One of the best ways to make a site useful for visitors is making it interactive, allowing users to search for the specific content that they want. By attending an advanced Dreamweaver training course, staff within an organization can learn to add database-driven content to their website using technologies such as ASP, PHP or ColdFusion. And, here again, Dreamweaver does the lion’s share of the work, allowing users to create sophisticated search and results pages using the same simply point-and-click and drag-and-drop techniques used to create basic content.

The writer of this article is a developer and trainer with Macresource Computer Solutions, a UK IT training company offering Adobe Dreamweaver training courses at their central London training centre.

6 Things To Know Before You Start Blogging

 

Blogging is a bandwagon that took off with startling speed, one that all and sundry wanted to get on. Most did get on the blogging train, but there were very few who tasted the kind of financial success that they dreamed of. Below is the list of things you should keep in mind before starting your blog.

1. Be realistic – Don’t expect overnight success. It hardly happens. Of course there are few exceptions, but you don’t want to compare to them. These people not only have the skills and knowledge, but also got the timing right. It’s better to set a more realistic goal, break it down into stages and work on your plans.

2. Don’t quit your regular job – The blogosphere is full of enthusiastic people. The promise of financial success can lure people to make silly decisions, like quitting your day job to focus on your blog. This is a big mistake. Blogging takes time to take off. If you quit your day job, you’re putting yourself into a big risk, when you don’t need to. Sure, sometimes this risk pays off. But it doesn’t happen to everyone. A better option is to spent a few hours each day on your blog, after work.

3. Be passionate – If you write on topics that you are passionate about, you are most likely able to stick to it and make it work. Your passion will really show in your posts, through the details information provided, along with the consistency in your posting frequency.

4. Focus on a niche – Blogs that focus on a niche tend to do better than those that just prattle on about any random topic under the sun or those that are more personal in nature. So choose a niche that you enjoy and one which you can portray creatively so that other people will be interested in reading what you have to say. This way, they will know what to expect from your blog, and may choose to subscribe if the topic of your blog interest them.

5. Know that patience pays – One thing you must remember when beginning a blog is that you must be patient in order to see even a modicum of success. It takes a long time to popularize a blog, and even when that happens, it may be some more time before you start to see monetary results.

6. Spend some – It’s undeniable that blogging is cheap. You don’t even need to spend a dime if you don’t want to. There’s free hosting and do-it-yourself design options that is enough to start with. Though, I would recommend to at least get a self hosting option, if you are serious about blogging. This is to show professionalism to your visitors, which is important if you want people to subscribe to your blog.

Blogging is not hard if you know what you’re talking about. The learning curve is not steep, if at all. It does however, takes some time to take off. So don’t make the same mistakes others make, and success will eventually come to you.

Nik Imran is the writer of IMakeABlog, a blog that provides guide on how to make a blog. If you are interested in building your first blog, you can check out his guide on how to choose domain name.

The To-Do-List For Forgetful Bloggers

 

When I started blogging, I always remember what has to be done. Overtime however, these things are often forgotten. I’m pretty sure I’m not the only one here. I hope this post will serve as a healthy reminder for us bloggers.

1. Backup your blog regularly – I don’t think I can stress this enough. If there is one thing you should take from the tips listed here, it’s this one. And I speak from experience. Waking up early in the morning only to find your blog crashed and you have no backup data, is like having your soul mate killed right in front of you, and there is nothing you could do about it.

2. Link to older posts – Linking to older posts can increase your traffic and search engine rankings. Additionally, it can also give more information for the readers that want to go deeper into certain subjects. If you have been blogging for months already you probably have a vast and rich archive, so use it.

3. Network – Ask 10 successful blogger and at least 7 of them will answer you this; “The key to blogging success is networking with other bloggers”. Sometimes, who you know is more important that what you know. There are many ways to network. Things like commenting on other blogs, guest posting and befriends them in social media.

4. Proofread – If you browse around the blogosphere you will notice that the vast majority of the bloggers do not proofread. Confusions with its and it’s, your and you’re, and their and they’re are very common. So the next time you finish writing a post or article, remember to proofread it.

5. Answer to comments – You just started blogging not too long ago and few comments comes in. You got excited, and you answer each of them. Usually, this is the case. However, over time, when your blog has become more popular, it’s easy to start neglecting the comments. Although it can be very time consuming to reply all the comments, at the very minimum you want to answer the people that post direct questions to you.

6. Answer to emails – Depending on the size of your audience it might become cumbersome to answer to all emails, but you should try nonetheless. It might be the difference between an upset visitor and a faithful reader.

7. Upgrade WordPress – Common sense, yet many bloggers are reluctant to upgrade their WordPress software. Some people deliberately choose to use older versions. That could be possible if you know what you are doing (i.e. if you know to patch the security holes).

Nik Imran is the writer of IMakeABlog, a blog that provides guide on how to make a blog. If you are interested in creating a blog, be sure to check out his guide on how to choose domain name.

Why Split Testing Works?

 

True marketing is a science. It involves excessive amounts of research to find the perfect ad campaign. It’s never easy, constantly requiring new studies and tests.

A lot of online marketers want to take the easy way out. They always feel that they can copy the success story of another internet marketing campaign. Bad decision and here’s why

Split testing is a way to bring the science back into marketing, and quite possibly the most accurate and effective way of doing online marketing research.

Split testing with compare and contrast two ads with subtle differences, ranging from a new font, color, or phrase. After a few days, the marketing company will compare the two ads and see which one drew more attention. Another change is made to that ad and once again they are tested.

The test is done several times until the marketing company finds an ad that they feel is the perfect combination and a sure bet to increase sales.

Split testing is a major factor in what campaigns work and what campaigns do not. Rest assured the majority of online campaigns that succeed, ran an extensive split testing campaign beforehand.

No, you must expand your creative mind and find out how you can reach your audience. One of the first concepts you learn in marketing basics is how you understand and reach your audience. You will only discover your audience through tests.

Young adults and teenagers have shorter attention spans, so they like flashy ads filled with relevant pop culture and vibrant colors. The elderly on the other hand, want a simple and plain ad with a large sized font.

Subtle differences in ads really make a large difference. A size– font may make all the difference as opposed to a size’ font. Experimentation is the biggest key behind split testing and is highly recommended for every online marketing campaign.

Split testing is not just some optional way of seeing if you can improve your conversions. No, instead it’s one of the more viable and accurate ways to test out your ads as well as compare and contrast.

Graham McKenzie is the content Syndication Manager for the splittestmasterguide.com teaching webiste owners how to split test for increased profits.

8 Ways To Increase Your RSS Subscribers

 

It’s the goal of every blogger to have a large number of readerships. And the best way to determine this is through the number of subscribers the blog have. Make use of these tips to increase your subscribers today.

1. Have clear focus on your blog – In order to build a good blog, your blog should have a clear focus on the topic. You don’t want to confuse people on what to expect from your blog. Specialize in a topic and slowly build your authority is a better way to do it.

2. Write valuable content – Do your article offer value to your readers. Internet lurkers don’t waste time reading articles that do not offer any value to them. To gain subscribers and grow your blog, your article should offer values that they are looking for.

3. Publish new posts frequently and consistently – So here’s the deal. People don’t subscribe to dead blogs. If your blog is post regularly and consistently, this will indicate that your blog is active. This way, more readers will subscribe to your blog.

4. As few steps as possible – If you want higher subscriber count, you want to make the step convenient for your visitors to subscribe. People are lazy. It’s true. The easier it is for your readers to subscribe, the higher you chance to gain subscribers.

5. Encourage readers to subscribe at the bottom of every post – Apart from having an RSS icon and email subscription form above the fold, it is also important to place them below each single post. Why? Because right after people finish reading your articles, they will look for something to do next, and subscribing to your blog is a good option. Additionally, if the article they just read was really good, they will be on the right mindset to subscribe and receive more of your articles in the future.

6. Use an email subscription form – For most bloggers, an email subscription form will convert better than a simple “Subscribe via email” link. That is because Internet users are used to seeing those forms around, and typing their email address there is quite intuitive. The top of your sidebar is a good spot to place one.

7. Run a contest – Contests are very popular on the blogosphere. If you have a somewhat popular blog, in fact, it is not difficult to raise some prizes and create one. By making subscribing to your RSS feed a requirement to participate, you could quickly boost the number of subscribers that you have. If you want to control who is going to take this action, use the email subscription method.

8. Display the RSS icon on every page of your blog – When I started blogging I did this mistake. Only my homepage used to have an RSS icon. As soon as I added it to every single page on the blog, the number of subscribers jumped.

Nik Imran is the writer of IMakeABlog, a blog that provides guide on how to make a blog. If you are interested in creating a blog, be sure to check out his guide on how to choose domain name.

SEO And Your Small Business

 

The online marketing industry is really buzzing these days with the talk of the search engine optimization industry. For new businesses though, all of this talk of SEO and bantering about acronyms can get a bit confusing – small business are left wondering just precisely what this industry is and if they need to consider optimizing their own sites.

Small business are on tight budgets and finding the money to pay for proper search engine optimization, or find DIY instructions can seem daunting. One of the big myths in the industry is that SEO has to be incredibly difficult and that it’s not worth the effort it takes to properly optimize. That’s just case though and every single small business with a monetized site selling products and services benefits from the traffic that major search engines bring to their virtual doorstep.

Small businesses and monetized blogs have a lot of potential to benefit from niche and targeted traffic from the major search engines. The real key though, and something not understood by all new companies launching into online marketing efforts, is that only targeted search traffic is actually beneficial. SEO is intended to allow your site to place in the search engine for valid keyword for which a potential client would likely search for your product or service.

Ideal search engine optimization on the other hand is intended to bring organic search traffic into your website with specific keywords that your target market is likely going to be using to find your business. SEO efforts, as a part of a total online marketing campaign, are intended to boost a site’s natural and organic placement in the search engine.

Small businesses have a lot to gain from SEO because the entire purpose of optimization is to bring in more highly targeted potential customers. In that way, both newly launching and existing companies can really focus their online marketing efforts through an effective search engine optimization campaign that focuses only on bringing in niche and targeted search traffic that is most likely looking for the products and services offered on your site.

The central point to all of this is that SEO has a lot of value for all small (and large) business operating on the Web today. There are both ethical and unethical ways to use search engine optimization, but the unethical tactics equate to spam. Ethical SEO efforts though are essentially one of the most important parts of launching a new online business. The main goal of SEO is to enhance the web presence of an company and better place that site in the search engines for a specific and niche keyword that is highly relevant to the optimized site.

Before considering the pricey investment of corporate SEO services, the line of DIY SEO products for small businesses provide an amazing, affordable jump-start for new companies looking to maximize their online marketing efforts through Travel Online Partners.