what are some basic HTMl's for a basic website?
either type them out or give me a good website to find them .
thanks
;) :)
Public Comments
- <html> <head> <title> </title> </head> <body> Put your information in here... </body> </html> That will do you as a decent starting template. Just fill in the body information with different things... <p> will put things on new lines, <h1> will make a heading that is your largest on the page. Just have some fun..
- You might want to read HTML for Dummies to learn how to wright code.,You may also want to look at one of Yahoo's web design tools that automaticlly convert your web page to HTML as you publish your site,Go to http://smallbuisnee.yahoo.com/domains/
- This is a great site... http://www.w3schools.com/html/default.asp but first, are you using any template, or do you want to start from scratch ? it takes a while to learn enough HTML to create a page (properly anyway) top of the page you need a decleration (or Doc Type), then, it need to be formatted like this <Doc Type> <html> <head> (header info. title, keywords etc...) </head> <body> webiste content </body> </html> pages you will use the most http://www.w3schools.com/html/html_elements.asp http://www.w3schools.com/html/html_primary.asp http://www.w3schools.com/html/html_quick.asp http://www.w3schools.com/html/html_formatting.asp http://www.w3schools.com/html/html_examples.asp
- <b>This text is bold</b> <i>This text is italic</i> <p>New paragraph</p> <br>New line. Image: <img src="image file url"> iFrame (Displays another webpage in a box): <iframe src="webpage url to be displayed"> On images and iframes, you can add width and height. For example: <img src="penguin.gif" width="100" height="300"> <iframe src="http://www.lightbulbnetkidsclub.com/" width="1000" height="1100"
- <img src="enter pic URL here">
Powered by Yahoo! Answers