Posts Tagged ‘Programming’
Thursday, November 8th, 2007

Today we learn how to create a search form in HTML! You have all files here and the
final result here!
[1] Open Notepad and type the next code.
<html>
<head>
<title>PiticStyle - Create a Search Form</title>
<style type=”text/css”>
body {
background-image: url(”bg.gif”);
}
img {
float: left;
}
</style>
</head>
<body><br>
<form action=”http://www.google.com/search” method=”get”><img src=”search.gif” mce_src=”search.gif”>
<input type=”text” name=”q”>
<input type=”submit” value=”Search”>
</form>
</body>
</html>
(more…)
Tags: Create a Search Form in HTML, Design, forms in HTML, google, how to, HTML, Programming, Search Form, tutorial, webdesign
Posted in Design, HTML, SEO, Tutorials | 1 Comment »
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…)
Tags: Design, Download, how to, Internet, links, Programming, Tips & Tricks, tutorial, Validate CSS, Validate HMTL & CSS from your page, Validate HTML, w3c website, webdesign, world wide web consortium
Posted in CSS, Design, Download, HTML, Internet, Photoshop, Tutorials | 3 Comments »
Sunday, November 4th, 2007
I found this file on a p2p program and i think is useful! To try this commands go to start > RUN > type CMD and it will be open a window.

Accessibility Controls
access.cpl
Add Hardware Wizard
hdwwiz.cpl
Add/Remove Programs
appwiz.cpl
Administrative Tools
control.exe admintools
Automatic Updates
wuaucpl.cpl
Bluetooth Transfer Wizard
fsquirt
Calculator
calc
Certificate Manager
certmgr.msc
Character Map
charmap
Check Disk Utility
chkdsk
(more…)
Tags: 101 Commands to type in RUN, CMD, computers, DOS, how to, multimedia, Programming, RUN, tips&tricks, tutorial, Windows commands
Posted in Tutorials | No Comments »
Tuesday, October 30th, 2007

Today we create a simple MENU in CSS. Click here to see the final result!
[1] Let’s to create the CSS:
<style type=”text/css”>
body {
text-align: left;
background-image: url(”bg.gif”);
}
div {
width: 100px;
height: 20px;
background-color: #338ce8;
}
div:hover
{
background-color: #085ea6;
}
a {
color: white;
font-size: 18px;
text-decoration: none;
}
</style>
(more…)
Tags: cascade style sheet, Create a Menu in CSS, Create MENU, CSS, Design, how to, Programming, scripts, site, sitedesign, tips&tricks, tutorial, w3c, webdesign, website, worldwideweb consortium
Posted in CSS, Design, HTML, Tutorials | No Comments »
Monday, October 29th, 2007
I found in my PC a very beautiful and easy to configurate. Click here to see an example!

How to configurate:
(more…)
Tags: Design, Download, Embed Music Online, Flash, Flash Mp3 Player, Free Flash Mp3 Player, mp3, Music, Player for your site, Programming, script, tutorial, website, XML
Posted in Design, Download, Internet, Tutorials | 2 Comments »
Saturday, October 27th, 2007

Final result HERE
Today we learn how to create a TELL A FRIEND script with HTML and PHP. If you want to exercise on my files, click here
to download them!
(more…)
Tags: Design, how to, HTML, index.php, PHP, Programming, script, scripts, tagging, Tell a Friend, Tips & Tricks, tutorial, w3c, www
Posted in HTML, PHP, Pictures, Tutorials | 7 Comments »
Thursday, October 4th, 2007
vs
XHTML 1.0 is a reformulation of HTML 4.0. What this really means is that learning XHTML is basically the same as learning HTML. The main difference is a few simple rules - as XHTML is more strict than standard HTML.
[1] Stricter adherence to the HTML specification
Many browsers are very lax in how they interpret HTML. This leads to incongruities in how the pages are displayed, and XHTML doesn’t allow that. The best way to correct this is to use an XHTML validator such as HTML Tidy.
[2] Write well formed documents
What this generally means is avoiding overlapping elements. The following nested code is acceptable: <p>Paragraph <em>emphasized</em></p> because the <em> tag is opened and closed within the <p> tag. However, this is not allowed: <p>Paragraph <em>emphasized</p></em> because the <em> tag overlaps the <p> tag.
(more…)
Tags: atributes, div, elements, HTML, Programming, table, tags, w3c, Web, web languages, world wide web consortium, XHTML
Posted in Articles, Design, HTML, Pictures, Tutorials, XHTML | 20 Comments »