node

Embed Drupal node form anywhere

Simple 1 line of code to embed a Drupal node form anywhere in your site although I would recommend doing it the Drupal way which is creating a custom module for this.

print drupal_render(node_add('NODE_TYPE'));

Where NODE_TYPE is your content type (machine name).

If the code above returns an error that says the function node_add() is undefined, add the following code before it.

Style Drupal node according to Teaser or Full page view

Allows you to theme nodes according to the view mode. This code provides more template suggestion for you to style.
If you have for example content type "computer", you may copy node.tpl.php in your theme to node--computer.tpl.php or more specifically node--computer-teaser.tpl.php or node--computer-page.tpl.php