<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0' version='2.0'><channel><atom:id>tag:blogger.com,1999:blog-3128924042452029244</atom:id><lastBuildDate>Sun, 05 Oct 2014 00:31:00 +0000</lastBuildDate><category>learn to seo</category><category>staten island web design</category><category>search engine optimization</category><category>seo for beginners</category><category>help with seo</category><category>search engine optimization for beginners</category><category>web design</category><title>Web Design, Search Engine Optimization, and Life</title><description>Staten Island Web Design, Search Engine Optimization, and Life</description><link>http://statenislandwebdesign.blogspot.com/</link><managingEditor>noreply@blogger.com (Joe Garite II)</managingEditor><generator>Blogger</generator><openSearch:totalResults>5</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-3128924042452029244.post-322426500516467698</guid><pubDate>Wed, 13 Sep 2006 02:53:00 +0000</pubDate><atom:updated>2006-09-12T23:07:09.265-04:00</atom:updated><title>Automatic Magazine Layout</title><description>&lt;a href="http://www.harveykane.com/"&gt;By: Harvey Kane&lt;/a&gt;&lt;br /&gt;Auto-resized images are a common feature on the web now. Automating the process of resizing images saves a lot of time—it’s certainly quicker than manually resizing images in Photoshop—and is a good way to manage images on a site. But when a good designer crops your images manually, they always looks better.&lt;br /&gt;&lt;p&gt;The problem with automatic uploads is particularly evident when several images of completely different dimensions are displayed together on a page, such as four product images that have been uploaded through a content management system (CMS). Finding an attractive way of displaying any two, three, or four images together (regardless of shape and size) has always been difficult without manual resizing or cropping.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;This article covers a &lt;span class="caps"&gt;PHP&lt;/span&gt;-based technique for automatically resizing—and more importantly, positioning—between two and eight images in what I call a magazine-style layout (images in a magazine are always carefully positioned—usually one image takes pride of place and several smaller images surround it).&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://alistapart.com/d/magazinelayouts/example1.htm"&gt;Example 1&lt;/a&gt; shows the final output of this technique. The only information we need to supply to the script is the width of the container, and the file name of each image. Amazingly, everything else can be calculated.&lt;br /&gt;&lt;/p&gt;&lt;h2&gt;Different dimensions&lt;/h2&gt;&lt;p&gt;Consider the following three images of different sizes and dimensions, which could have been uploaded via a &lt;span class="caps"&gt;CMS&lt;/span&gt;…&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="illustration left full"&gt;&lt;img src="http://alistapart.com/d/magazinelayouts/originals.gif" alt="three user-uploaded images, all different dimensions" /&gt;&lt;br /&gt;&lt;p&gt;Three user-uploaded images, all of different dimensions. In their current shape, these images are unlikely to look attractive. A more desireable layout is shown below&lt;br /&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="illustration left full"&gt;&lt;img src="http://alistapart.com/d/magazinelayouts/repositioned.gif" alt="The same three images, resized and positioned correctly" /&gt;&lt;br /&gt;&lt;p&gt;The same three images resized and positioned correctly.&lt;br /&gt;&lt;/p&gt;&lt;/div&gt; &lt;p&gt;Anyone with an image-editing program such as Photoshop can achieve this effect very quickly, but it needs to be done manually. This method uses of some server-side &lt;span class="caps"&gt;PHP&lt;/span&gt; scripting and some rather complicated algebra to achieve the same effect, no manual tweaking involved.&lt;br /&gt;&lt;/p&gt;&lt;h2&gt;The solution&lt;/h2&gt;&lt;p&gt;Using &lt;span class="caps"&gt;PHP&lt;/span&gt; to resize the images on the server, we are able to calculate the exact size that each image should be so they will fit together in a nice square box. This will maintain our aspect ratios, work with almost any image proportion, and allow us to do all the dirty work on the server. Square images are no problem either (see &lt;a href="http://alistapart.com/d/magazinelayouts/example2.htm"&gt;Example 2&lt;/a&gt;).&lt;br /&gt;&lt;/p&gt;&lt;h2&gt;Getting started&lt;br /&gt;&lt;/h2&gt;&lt;p&gt;First things first, you will need a &lt;span class="caps"&gt;PHP&lt;/span&gt; web host who has the &lt;span class="caps"&gt;GD2&lt;/span&gt;.x extension enabled. Fortunately, this is quite common these days. You will also need a good image resizing script. I have included a basic script here, but it’s always a good idea to use a script that caches the output, as dynamic images can really slow down your server. Copy the supplied class file to your web server and note its location on the server.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Create a basic script as follows… (line wraps marked » &lt;em&gt;—Ed.&lt;/em&gt;)&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;pre&gt;# include the class file&lt;br /&gt;require_once('magazinelayout.class.php');&lt;br /&gt;&lt;br /&gt;# Define the width for the output area (pixels)&lt;br /&gt;$width = 600;&lt;br /&gt;&lt;br /&gt;# Define padding around each image - this *must* be included&lt;br /&gt;#in your stylesheet (pixels)&lt;br /&gt;$padding = 3;&lt;br /&gt;&lt;br /&gt;# Define your template for outputting images&lt;br /&gt;# (Don't forget to escape the &amp;)&lt;br /&gt;$template = '&amp;lt;img src="image.php?size=[size]&amp;amp;amp;file=[image]" »&lt;br /&gt;alt="" /&amp;gt;';&lt;br /&gt;&lt;br /&gt;# create a new instance of the class&lt;br /&gt;$mag = new magazinelayout($width,$padding,$template);&lt;br /&gt;&lt;br /&gt;# Add the images in any order&lt;br /&gt;$mag-&amp;gt;addImage( 'landscape1.jpg' );&lt;br /&gt;$mag-&amp;gt;addImage( 'portrait1.jpg' );&lt;br /&gt;$mag-&amp;gt;addImage( 'landscape2.jpg' );&lt;br /&gt;&lt;br /&gt;# display the output&lt;br /&gt;&lt;br /&gt;echo $mag-&amp;gt;getHtml();&lt;/pre&gt;&lt;p&gt;That’s it. Running the script should display three images in an attractive layout; the exact look of the layout will be determined by whether the images are landscape (longer than tall) or portrait (taller than long).&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;h2&gt;How does it work?&lt;br /&gt;&lt;/h2&gt;&lt;p&gt;The above code is basic object-oriented &lt;span class="caps"&gt;PHP&lt;/span&gt;. It sets up a new class, adds some images into an array, and processes them. The &lt;code&gt;getHtml()&lt;/code&gt; method is the key. Let’s take a look.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;h2&gt;Getting image ratios&lt;br /&gt;&lt;/h2&gt;&lt;p&gt;As images are added, we detect whether they are landscape or portrait using &lt;span class="caps"&gt;PHP&lt;/span&gt;’s &lt;code&gt;getimagesize&lt;/code&gt; function. This gives us the height and width of the image, which we use to find a ratio of width : height. This function is quite processor intensive, but it can’t be avoided.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;We don’t need to know the height and width, but we’ll use the ratios later on, so we’ll save them to an array. At this point, we also decide whether we are dealing with landscape or portrait images, as this determines which template the script will use. The template above is based on two landscape images and one portrait.&lt;br /&gt;&lt;/p&gt;&lt;h2&gt;Calculating sizes&lt;br /&gt;&lt;/h2&gt;&lt;p&gt;Our goal is to get the three images to look right within an overall  fixed width—the overall height will vary depending on the image dimensions. The complicated part of all this is figuring out the right size for each image. If we did it in Photoshop, it would involve resizing each image until it “looks right,” and every change will potentially upset the balance of the other images. My first attempt at this script wasn’t too different from a Photoshop trial-and-error process; the script started a counter at 1 and tried every size up to 500px until it found a working combination. The sound of my processor fan kicking on convinced me there had to be a better way.&lt;br /&gt;&lt;/p&gt;&lt;h2&gt;Algebra&lt;/h2&gt;&lt;p&gt;It turns out my problem can be solved using algebra—something I spent a lot of time learning at university, but never managed to find a practical application for. Ten years on, it’s coming into use for the first time.&lt;br /&gt;&lt;br /&gt;Certain parts of our equation we know:&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;&lt;var&gt;t&lt;/var&gt; = Total width—The total width of all images specified when the class is called.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;var&gt;r1&lt;/var&gt;, &lt;var&gt;r2&lt;/var&gt;, &lt;var&gt;r3&lt;/var&gt; = Ratios—We have already calculated the ratios of each image based on the width and height.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;What we don’t know…&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;&lt;var&gt;w1&lt;/var&gt;—The width of the left column—one required piece of information.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;var&gt;w2&lt;/var&gt;—The width of the right portrait image, also required.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;p&gt;The following diagram shows the values we know and those we don’t. Known values have a checkmark, unknown have a question mark.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="illustration left full"&gt;&lt;br /&gt;&lt;img src="http://alistapart.com/d/magazinelayouts/properties.gif" alt="Our equation values explained" /&gt;&lt;br /&gt;&lt;p&gt;A diagram showing the relation of our equation values to the layout.&lt;br /&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;Given these widths, our image script can figure out the heights because we already know the aspect ratio of each image. If we can use algebra to find &lt;var&gt;w1&lt;/var&gt; and &lt;var&gt;w2&lt;/var&gt;, we have all we need.&lt;br /&gt;&lt;/p&gt;&lt;h2&gt;What we also know&lt;/h2&gt; &lt;p&gt;We also know that the height of the portrait image is equal to the combined height of the two landscape images, expressed as…&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;pre&gt;h1 = h2 + h3&lt;/pre&gt; &lt;p&gt;And we know that the same height is also equal to the portrait image’s width divided by its ratio:&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;pre&gt;h1 = w2 / r1&lt;/pre&gt;&lt;br /&gt;&lt;p&gt;We also know the height of the landscape images is their width divided by their ratio.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;pre&gt;h2 = w1 / r2&lt;br /&gt;h3 = w1 / r3&lt;/pre&gt;&lt;p&gt;After some rearranging of elements, I am starting to put everything into one equation, with the goal of finding &lt;var&gt;w1&lt;/var&gt;. A trip to the &lt;a href="http://www.quickmath.com/"&gt;Quickmath calculator&lt;/a&gt; gives me the result I need.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;pre&gt;W1 = t / ( r1 * ( 1/r2 + 1/r3 + 1/r4 ) + 1 )&lt;/pre&gt;&lt;h2&gt;Some padding, please&lt;/h2&gt; &lt;p&gt;At this point, it became apparent that the first designer to look at the output would be wanting some padding between the images. This is not as simple as adding a few pixels onto each image, because the left-hand side is going to have more padding overall than the right which will throw the formatting. &lt;a href="http://beta.blogger.com/d/magazinelayouts/example3.htm"&gt;Example 3&lt;/a&gt; shows the layout without any padding.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;With a little help from the calculator, I arrived at the following equations:&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="illustration left full"&gt;&lt;img src="http://alistapart.com/d/magazinelayouts/equation.gif" alt="w1 = - ((2*r1*r2*r3*p + 4*r2*r3*p - r2*r3*t) / (r1*r2 + r3*r2 + r1*r3)) and w2 = (r1* (-4r2*p + 2*r2*r3*p - 4*r3*p + r2*t + r3*t)) / (r1*r2 + r3*r2 + r1*r3)" /&gt;&lt;br /&gt;&lt;p&gt;The formula for one of the layouts.&lt;br /&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;Things are starting to look a little more complicated here, but this does work.&lt;br /&gt;&lt;/p&gt;&lt;h2&gt;Enough maths, back to &lt;span class="caps"&gt;PHP&lt;/span&gt;&lt;/h2&gt; &lt;p&gt;This was never meant to be a lesson in mathematics, but we now have enough information to plug back into our &lt;span class="caps"&gt;PHP&lt;/span&gt; script. By replacing the algebra variables with &lt;span class="caps"&gt;PHP&lt;/span&gt; variables, we create a formula for finding the information we are missing.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Given the ratios of the images and the overall container width, we can calculate the width of all images—enough for the image resizing script to do its job.&lt;br /&gt;&lt;/p&gt;&lt;h2&gt;&lt;span class="caps"&gt;CSS&lt;/span&gt;&lt;/h2&gt; &lt;p&gt;Because we don’t use tables for positioning anymore, I had to find a way of making the layout look good using &lt;span class="caps"&gt;CSS&lt;/span&gt;. Because we are dealing with squares, this is quite straightforward using the images in a floating &lt;code&gt;div&lt;/code&gt;. All was working well until I tried the version with padding between the images in IE. Because IE handles padding differently than other browsers, it offset the images by a few pixels and ruined the effect.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;One way to work around this problem is to place the image inside a container &lt;code&gt;div&lt;/code&gt; and apply margins to the image. This will force the container to the right size, which gives the much needed effect of padding between the images. Default &lt;span class="caps"&gt;CSS&lt;/span&gt; is as follows:&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;pre&gt;.magazine-image {&lt;br /&gt;background: #fff;&lt;br /&gt;border: 1px #eee solid;&lt;br /&gt;}&lt;br /&gt;.magazine-image img {&lt;br /&gt;padding: 0px;&lt;br /&gt;background: #fff;&lt;br /&gt;margin: 2px;&lt;br /&gt;border: 1px #eee solid;&lt;br /&gt;}&lt;/pre&gt;&lt;h2&gt;Different layouts&lt;/h2&gt;&lt;p&gt;This script contains six different layouts based on different formulas. The layouts accomodate from one to four images each. If you need to display six images, the script simply uses the four-image layout followed by the two-image layout (see &lt;a href="http://beta.blogger.com/d/magazinelayouts/example4.htm"&gt;Example 4&lt;/a&gt;). Some of the layouts are more appropriate for certain combinations of image size, such as 2x landscape 1x portrait; others are more generic. &lt;a href="http://beta.blogger.com/d/magazinelayouts/example5.htm"&gt;Example 5&lt;/a&gt; shows how the script can be used at different widths to fit any space of your page.&lt;br /&gt;&lt;/p&gt;&lt;h2&gt;Possible uses&lt;br /&gt;&lt;/h2&gt;&lt;p&gt;The obvious use for this script is anywhere where more than one user-submitted image needs to be presented in a &lt;span class="caps"&gt;HTML&lt;/span&gt; page. I’m thinking product databases, forum image uploads, random image rotations, etc, etc.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Once you have ten or so images, you are better off using an &lt;span class="caps"&gt;AJAX&lt;/span&gt; based image gallery, but this script will fill the gap nicely up until that point.&lt;br /&gt;&lt;/p&gt;&lt;h2&gt;Download&lt;/h2&gt;&lt;p&gt;The full source code and examples are &lt;a href="http://alistapart.com/d/magazinelayouts/magazine-layout.zip"&gt; downloadable&lt;/a&gt;.&lt;br /&gt;&lt;/p&gt;&lt;h2&gt;Thanks and credits&lt;/h2&gt; &lt;p&gt;Thanks to &lt;a href="http://www.alex3d.de/"&gt;Alexander Burkhardt&lt;/a&gt; for the use of the demo images. The images were taken on the lovely Hokianga Harbour in Northland New Zealand. &lt;img src="http://alistapart.com/pix/eoai.gif" alt="" id="eoai" /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div id="credits"&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;Illustration by &lt;a href="http://alistapart.com/about/kevincornell"&gt;Kevin Cornell&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Harvey Kane is a &lt;span class="caps"&gt;PHP &lt;/span&gt;Web developer living in Auckland, New Zealand who publishes &lt;a href="http://www.ragepank.com/"&gt;&lt;span class="caps"&gt;SEO &lt;/span&gt;Articles&lt;/a&gt; and tools. By day, he produces &lt;a href="http://www.harveykane.com/"&gt;&lt;span class="caps"&gt;CMS&lt;/span&gt; websites&lt;/a&gt; for small businesses.&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;</description><link>http://statenislandwebdesign.blogspot.com/2006/09/automatic-magazine-layout.html</link><author>noreply@blogger.com (Joe Garite II)</author><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-3128924042452029244.post-672978448229550917</guid><pubDate>Sun, 03 Sep 2006 16:34:00 +0000</pubDate><atom:updated>2006-09-03T12:36:07.173-04:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>search engine optimization</category><category domain='http://www.blogger.com/atom/ns#'>web design</category><category domain='http://www.blogger.com/atom/ns#'>seo for beginners</category><category domain='http://www.blogger.com/atom/ns#'>help with seo</category><category domain='http://www.blogger.com/atom/ns#'>learn to seo</category><category domain='http://www.blogger.com/atom/ns#'>staten island web design</category><category domain='http://www.blogger.com/atom/ns#'>search engine optimization for beginners</category><title>Website Promotion: Getting Started</title><description>Website Promotion: Getting Started&lt;br /&gt;By: &lt;a href="http://www.webreality.net/overview.php" target="_blank&amp;quot;"&gt;Joe Garite II&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Okay, if you have read my last article Search Engine Optimization: Getting Started than you are ready for this article. If you haven’t, bookmark this article and jump on over to that article. When you’re done with that come back to this one. If you have already read it than you can continue to read on. In this article I am going to tell you the FREE ways of getting advertising and promotion. Ready? Lets go!&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;&lt;br /&gt;Search Engine Submission&lt;/span&gt;&lt;br /&gt;You’ve optimized the site you want to make money on so lets start to submit it to search engines. Now you may have seen those ads that tell you they will give you 500 Search Engine Submissions for only $19.95, let me be one of the first to tell you that it’s a waste of money. All you need to do is go to Google.com. That’s right, one search engine will take care of all your needs. Google has become such a huge search engine, that the majority (not all mind you) will crawl through Google to get their index. So head over to &lt;a href="http://www.Google.com/addurl.htm"&gt;http://www.Google.com/addurl.htm&lt;/a&gt; and submit your website. People ask “how often should I submit my website?”, I usually submit once every couple of months (2-3 should be good). However, there are others that will say you only need to submit it once. It’s a judgement call that you can make. But be warned, if you submit too often your website will be “sandboxed”. When submitting to Google, you must be patient, VERY VERY PATIENT. There have been websites that can take 6-12 months just to get indexed, but when it finally does, you will see the difference as long as you have fresh content (the key to any website). &lt;br /&gt;&lt;span style="font-weight:bold;"&gt;&lt;br /&gt;Inbound Links&lt;/span&gt;&lt;br /&gt;Inbound links hold a great deal of importance when Google decides where you are to be placed on their search engine. The more inbound links you have, the closer to the top of the search you will be. Remember that single keyword/key phrase I told you to use? Type it in Google and find your top three competitors. Write down their URL and do another search in Google for each URL. Than click “View links to this site”. This will give you an idea of how many links your competitors have going to them. You can also use this method to check how many websites are linking to you. While doing this, you can also look for a place to add your link to those websites. When requesting that a website add your link, make sure that the area you are going to be placed in has less than 40 links on it. Any more than that and the search engines may consider it to be a link farm (this will also result in sandboxing).&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Article Submissions&lt;/span&gt;&lt;br /&gt;Do you know a lot about what your doing? Sure you do, that’s why you do it. Take that knowledge and put it into an article. By writing articles (just like this one) you are creating fresh content for your website. Not only can these articles go into your website, but you can submit them to FREE Article Publishers such as &lt;a href=http://www.articleblast.com&gt;ArticleBlast&lt;/a&gt; and &lt;a href=http://www.ezinearticles.com&gt;EzineArticles&lt;/a&gt;. When writing your article you can include an “About the Author” section also known as a resource box. Inside the resource box you would put a link to your website. This counts as an inbound link to your website. &lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Google Adsense&lt;/span&gt;&lt;br /&gt;Some people may choose to go the path of using Google Adsense.  This is perfectly fine if you are in a rush to get targeted traffic to your website and if you have the money to spend on it. The average budget for Google Adsense is generally $300 a month and up. But it really depends on how much you want to spend and how desperate you are to get traffic flowing to your website. The higher your budget, the more traffic you are sure to get. Keep in mind, however, just like any of advertising method, Google Adsense does not guarantee paying customers. You must make sure that your advertisement shows exactly what your website is about to avoid wasted clicks. Do not make them general and do not lie to your customer. It’s a waste of your time and a waste of their’s. &lt;br /&gt;For those who aren’t in a rush to get traffic into their website, but want to experiement with Google Adsense, I would suggest no more than $100 as a budget and using 2-3 target keywords. The Google Adsense path is a good way to get traffic, but can be a costly investment. And some months may not always be in the black because of it. Be wary when preparing your budget. And always make sure you have enough to pay your web hosting bills.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Conclusion&lt;/span&gt;&lt;br /&gt;There are still many more ways to promote your website, online and offline. I will go into some detail about offline promotion and how you can go about doing so for some reasonable prices.&lt;br /&gt;&lt;br /&gt;Joe Garite II of &lt;a href="http://www.webreality.net/" target="_blank"&gt;WebReality.net&lt;/a&gt; has seven years of experience in the Web Design field. He focuses mainly on the UI of a website, but is now in the Search Engine Optimization field.</description><link>http://statenislandwebdesign.blogspot.com/2006/09/website-promotion-getting-started.html</link><author>noreply@blogger.com (Joe Garite II)</author><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-3128924042452029244.post-2364380284718733217</guid><pubDate>Sat, 02 Sep 2006 16:29:00 +0000</pubDate><atom:updated>2006-09-03T00:36:26.606-04:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>search engine optimization</category><category domain='http://www.blogger.com/atom/ns#'>web design</category><category domain='http://www.blogger.com/atom/ns#'>seo for beginners</category><category domain='http://www.blogger.com/atom/ns#'>help with seo</category><category domain='http://www.blogger.com/atom/ns#'>learn to seo</category><category domain='http://www.blogger.com/atom/ns#'>staten island web design</category><category domain='http://www.blogger.com/atom/ns#'>search engine optimization for beginners</category><title>Search Engine Optimization: Getting Started</title><description>Search Engine Optimization: Getting Started&lt;br /&gt;By: &lt;a href="http://www.webreality.net/overview.php" target="_blank&amp;quot;"&gt;Joe Garite II&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Okay, so you’ve got yourself a nice website and your advertising campaigns are starting to bring in some customers. But what if there was a way to advertise without paying for it? Would you take the time to learn about it? If you answered yes than keep reading. If you answered no than you can continue to pay for your advertising campaigns barely making profits and never increase your revenue.&lt;br /&gt;&lt;br /&gt;I am going to explain some of the first steps to get your website not only optimized for the search engines, but to push your website up in the rankings war. Grab yourself a cup of coffee and maybe a muffin and take out your pen and paper, lets start brainstorming.&lt;br /&gt;&lt;br /&gt;First you need to categorize your website. Figure out what category it is best suited under. For example if I am selling computer programs that aid web designers, I would categorize my website under Computer Software. That was easy enough right? Okay, now comes the difficult part. You need to pick one, just one, keyword or key phrase that you want to base your homepage on. Focusing on one keyword/key phrase makes it more valuable in the page in which it is located. The value of the keyword/key phrase is known as weight. You want your pages weight to hold 2% of the keyword/key phrase. This sounds easy, but it’s not. Let me tell you how to do this.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;The TITLE tag&lt;/span&gt;&lt;br /&gt;First is the most important part, the “&lt;&gt;” tag. This is the number one item to use your keyword in. If I were to give my website selling computer programs that aid web designers, I may use “&lt;&gt;Computer Software for Web Design&lt;!-- title --&gt;”. Although it contains a “stop” word (for), the top key phrase I am trying to work with is before that word. &lt;p&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;The META tag&lt;/span&gt;&lt;br /&gt;Than there are the META tags. Simply put, these tags go inside the “&lt;&gt; &lt;!-- head --&gt;” tags in your html. They allow the search engines to pull up your website using the keywords and describe your website using the description. Without these tags, you simply can’t have your website pulled up in the search engines.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;The ALT tag&lt;/span&gt;&lt;br /&gt;Next is the ALT tag which is used in images on your website. If you wanted to put “Computer Software for Web Designers” at the top of the page using a font that I know nobody else has, I would have to use an image. Inside this image I would use an ALT tag called alt=computer software for web designers”. Although the ALT tag is not as powerful as using the natural text itself some cases can’t be avoided.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;The Body&lt;/span&gt;&lt;br /&gt;We’re almost done. This isn’t hard at all right? Okay, so now that we have our HTML side optimized its time to work on the side that users see. When doing this, you need to be careful not to over use the keyword/key phrase but you need to use it enough to give it the weight it needs to be considered important. This is the tricky part. One good way to do this is to use it in your links whenever possible. Search engines like to see those types of links at the top of the page, so if you can use text links instead of images this would help your weight increase. Don’t forget to also include them at the bottom of the page. Although it is less effective, it does help. The other way is to include the keyword/key phrase into the body. For example in the sentence “Use it to help you make a better website” I would say “Use this computer software for web designers to assist you in making a better website”. Make sure you don’t go crazy with the keyword/key phrase, if you use it too much the search engines may “sandbox” you assuming you are spamming.&lt;br /&gt;&lt;br /&gt;This concludes the beginning steps to Search Engine Optimization. There are many ways to raise your rank in the search engines. In future articles I will explain how to advertise for free using your area of expertise. Until next time…&lt;br /&gt;&lt;br /&gt;About the author:&lt;br /&gt;&lt;br /&gt;Joe Garite II of &lt;a href="http://www.webreality.net/" target="_blank"&gt;WebReality.net&lt;/a&gt; has seven years of experience in the Web Design field. He focuses mainly on the UI of a website, but is now in the Search Engine Optimization field.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;</description><link>http://statenislandwebdesign.blogspot.com/2006/09/search-engine-optimization-getting.html</link><author>noreply@blogger.com (Joe Garite II)</author><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-3128924042452029244.post-416828738625977620</guid><pubDate>Fri, 01 Sep 2006 20:59:00 +0000</pubDate><atom:updated>2006-09-01T16:59:31.486-04:00</atom:updated><title>New Job</title><description>This just in, as of August 21st, 2006, I will be working for a Web Design Studio located in Staten Island known as Trusty Solutions. However, I am unable to disclose any information concerning my work completed their. So, if you have a big job that you feel you want me to work on, but don't think I can handle it alone, now I can work with Trusty Solutions on your job.</description><link>http://statenislandwebdesign.blogspot.com/2006/09/new-job.html</link><author>noreply@blogger.com (Joe Garite II)</author><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-3128924042452029244.post-8571170479072575219</guid><pubDate>Fri, 01 Sep 2006 18:59:00 +0000</pubDate><atom:updated>2006-09-01T15:01:06.519-04:00</atom:updated><title>About Me</title><description>WebReality.net is a small web design and development company located in Staten Island, New York. It is is run by a single Web Designer and has been in business since 2001. Because I am a small web design company, I am able to offer my client the lowest web design prices compared to those bigger web design companies. The greatest thing about working with a small/freelance Web Design company such as myself is that when you have a question or want to speak with someone, you will actually get a real live person.&lt;br /&gt;&lt;br /&gt;My specialty is designing high quality HTML/CSS web sites that are quick loading, search engine friendly, affordable and easy for visitors to use. I also offer a variety of options for reaching the search engines such as search engine optimization, competition research, and keyword research. All of these are necessities in competiting in the world wide web today.&lt;br /&gt;&lt;br /&gt;Over the years, I have become skilled at designing and promoting web sites for the Internet. I have been involved in creating and promoting website's both from scratch and from client designs.&lt;br /&gt;&lt;br /&gt;No two web sites are ever the same, just as no two customers' needs are the same, so I treat every web design project that way. I also believe that designing an effective web site should not be so expensive that the average start-up, entrepreneur, or worker from home cannot afford it. That is why I offer affordable web design services, and because of the affordability do not believe I skimp on the design services. I thrive to give my clients more than what they pay for. Why you may ask? It's all about making the customer (you) happy.&lt;br /&gt;&lt;br /&gt;I am dependable; offer a wide range of web design and promotional services as well as knowledge that will help your online presence succeed.&lt;br /&gt;&lt;br /&gt;I am also very proud to say that I have never had an unhappy client, or had to refund a single payment for any of the services I provided.&lt;br /&gt;&lt;br /&gt;E-mail WebReality.net to contact us about your design project. You are not obligated to purchase any services by contacting us.</description><link>http://statenislandwebdesign.blogspot.com/2006/09/about-me.html</link><author>noreply@blogger.com (Joe Garite II)</author><thr:total>0</thr:total></item></channel></rss>