Search results

  1. Q

    How do I align something in HTML code a certain amount of pixels?

    You can only do that kind of precision aligning using CSS. You can put it in with the HTML though (not recommended, but you can). Say you want to align your paragraphs 150 px from the right, do this: <p style="position: relative; right: 150px;">Some text here!</p> You can also change 'right'...
  2. Q

    do you know any cool html codes?

    Unfortunately, HTML is not where the coolness of many webpages. Great effects come from styling with CSS, and even embedded flash. HTML merely holds the data. Think of HTML like clay, and CSS is how you sculpt it into a great site. If you don't know CSS and don't want to learn, the best way is...
Back
Top