Posts Tagged ‘links’

13 Wordpress Plugins you must HAVE

Wednesday, November 7th, 2007

Ten minutes ago I do some updates to my plugins and I think is ok if I tell you what
plugins I use, to a good maintenance of your blog!

[1] Askimet - Askimet checks your comments against the Akismet web service to see if they look like spam or not. You need a WordPress.com API key to use it. You can review the spam it catches under “Comments”. Is a good plugin but i think the spammers use PROXY and you never escape from this kind of people.

Askimet screenshot

[2] All in One SEO Pack - Optimizes your Wordpress blog for Search Engines: Automatically optimizes your titles for search engines, Generates META tags automatically, Avoids the typical duplicate content found on Wordpress blogs, You can override any title and set any META description and any META keywords you want. This is the plugin which I love!

All In One SEO Pack screenshot

(more…)

Validate HMTL & CSS from your page.

Tuesday, November 6th, 2007

Hy! Today we learn how to validate HTML and CSS from your page. This tip is usefull if you have a website about webdesign where you have tools for development! Here is the final result
with a design what i made, you have all files in the archive HERE. Let’s Start.

[1] Open your text editor and type the next HTML code

<html>
<head>
<title>Validate CSS, HTML, XHTML from your page</title>
</head>
<body>
<div>
<form method=”get” action=”http://jigsaw.w3.org/css-validator/validator” target=”_blank”>
<input name=”uri” id=”uri” size=”30″ value=”http://” /></p><br><br>
<label title=”Submit file for validation”><input type=”submit” value=”Validate CSS” /></label>
<label title=”Clear HTML data”><input type=”reset” value=”Clear” /></label>
</form>
</div>
<br>
<div>
<form method=”get” action=”http://validator.w3.org/check” target=”_blank”>
<input name=”uri” id=”uri” size=”30″ value=”http://” /></p><br><br>
<label title=”Submit”><input type=”submit” value=”Validate HTML” /></label>
<label title=”Clear”><input type=”reset” value=”Clear” /></label>
</form>
</div>
</body>
</html> 

(more…)