View Full Version : simple webpage template?
GypsyOwl
09-21-2006, 01:38 PM
Hello,
I am a newbie and looking for a very simple webpage template that I can put my own content into.
Specifically I am unable to create a consistant header space and a table for the navigation menu. I believe this is a simple html coding that will create a constant table, am I right?
I am going to be using it temporarily until I can figure out the cms that I am learning. (ie Joomla).
Thanks in advance,
GypsyOwl
boxxertrumps
09-21-2006, 03:10 PM
We need a link to your website.....
try...
<ifame src="menu.html" style="width:Height Of Table; Height:Height Of Table"></iframe>
Add something like that after your <body> tag, in every page before the content.
Menu.html would be something like this, only with a head section, a doctype, and <html> tags...
<body><table><tbody>
<tr><td colspan="# of menu Items"><img src="Your Sites Logo.jpg" /></td>
</tr><tr>
<td><a href="page1.html" target="_pearent">Menu Item1</a></td>
<td><a href="page2.html" target="_pearent">Menu Item2</a></td>
<td><a href="page3.html" target="_pearent">Menu Item3</a></td>
<td><a href="page4.html" target="_pearent">Menu Item4</a></td>
</tr><tbody></table></body>
If You Want Me To Write The Entire Code for You, email me at..:Turbo_boxxer911@hotmail.com (mailto:Turbo_boxxer911@hotmail.com)
If You Want an example ... i cannot produce one because i am at school.... and Im Grounded Off my computer at home because i left it to Defrag/scandisc and junk.....
Check out http://www.oswd.org/.
Im Grounded Off my computer at home because i left it to Defrag/scandisc and junk.....Heh, Windows.
boxxertrumps
09-21-2006, 11:24 PM
id Rather have a linux... but hey.... this Os was free....
userkef1992
11-16-2006, 06:47 PM
but the free templates are uncostumysable (only text) and if you put to mutch text in it it wil look totally stupid
i am also new (but good with photoshop :p)
but the free templates are uncostumysable (only text)http://www.oswd.org/
if you put to mutch text in it it wil look totally stupidThen that's a very bad design :)
userkef1992
11-18-2006, 12:29 PM
so you say that if you download a good design you can custimize everyting
if i new that earlyer i wouldn't waste my time to find the codes from that stupid template i downloaded. if you want to customise a template open the images you want to cutomise in photoshop? bcuz i dont have that kinda view to past everything together at sight
Well, there's not much point in an uncustomisable template.
if you want to customise a template open the images you want to cutomise in photoshop? bcuz i dont have that kinda view to past everything together at sightYour English is incomprehensible here.
GypsyOwl
12-14-2006, 03:17 PM
Thank You,
I will try that code and google again as well.
I did find a template to download and found that I couldn't save it after working on it for a long time. Then I noticed that there was some advertising in the code and when I removed it during editing the code header... the thing locked me out all together. good thing I kept my content elsewhere while working on that.
Back to school for me. Sorry for such a long wait for my reply, I forgot where I posted this and just found it today on a google search. LOL
:D :o
Oh and you asked for my web addy http://www.gypsyowl.org is one (that is where I am working now to update the pages. I also have been working on the menu - it is a bit embarrassing right now so please don't laugh when you see it)
chechu
12-14-2006, 03:53 PM
I must say that the site doesn't look good, and you should change the sizes op the menu-item-boxes.
andersmoen
12-18-2006, 08:36 PM
If you want a simple site, you can get one of me here:
<html>
<head>
<title>Your title</title>
</head>
<body>
<!-- This will the top on your site -->
<table width="100%" height="100">
<tr>
<td>
<img src="yourlogo.jpg" alt="description">
</td>
</tr>
</table>
<!-- End of the top table -->
<!-- The menu -->
<table width="200" align="left">
<tr>
<td>
<a href="index.htm">Home</a> <br>
<a href="about.htm">About</a> <br>
<a href="contact.htm">Contact</a>
</td>
</tr>
</table>
<!-- End menu -->
<!-- The content -->
<table width="500" align="left">
<tr>
<td>
Just some content. Just some content. Just some content. Just some content. Just some content. Just some content. Just some content. Just some content. Just some content. Just some content. Just some content. Just some content. Just some content. Just some content. Just some content. Just some content. Just some content. Just some content. Just some content. Just some content. Just some content. Just some content. Just some content. Just some content. Just some content. Just some content. Just some content. Just some content.
</td>
</tr>
</table>
<!-- End content -->
</body>
</html>
You noticed I used small letters? That's because the next generation of HTML, XHTML, have to be written in small letters. Just so you know.
Hope you like it, and if you do, please just tell me :)
Edit: I think this is right, I don't use tables anymore, so I'm not 100% sure of it. But just try it, and if it doesn't work properly, please contact me, alright?
benniaustin
12-22-2006, 04:06 PM
You noticed I used small letters? That's because the next generation of HTML, XHTML, have to be written in small letters. Just so you know.
If you're really concerned about what the next generation or "future" is, then you should really look into not using tables for positioning.
You noticed I used small letters? That's because the next generation of HTML, XHTML, have to be written in small letters.Not yet, it's not. At the moment, XHTML is mostly just a reformulation of HTML in terms of XML. It's possible (but not certain; WHATWG are working on an alternative specification) that it will become the standard on the Web at some point.
Still, writing in lower-case doesn't hurt.
GypsyOwl
12-27-2006, 12:03 AM
If you want a simple site, you can get one of me here:
You noticed I used small letters? That's because the next generation of HTML, XHTML, have to be written in small letters. Just so you know.
Hope you like it, and if you do, please just tell me :)
Edit: I think this is right, I don't use tables anymore, so I'm not 100% sure of it. But just try it, and if it doesn't work properly, please contact me, alright?
It looks right. Thank You. That is exaxtly what I needed to get the page to set right just until I get the real work out of the way and put the validated pages in.
Thanks again,
GypsyOwl
GypsyOwl
12-27-2006, 12:06 AM
I must say that the site doesn't look good, and you should change the sizes op the menu-item-boxes.
You are right~ Thank you. The menu is a CoffeCup DHTML menu that needs some size adjustments. Thanks for the feedback. I really appreciate it. GypsyOwl
vanbao
12-28-2006, 06:22 PM
Does anyone know how program this website used to created the website. It does seem to have the typical .html extension.
Here is the link
http://equity1031.com
Thank you
GypsyOwl
12-28-2006, 07:48 PM
Does anyone know how program this website used to created the website. It does seem to have the typical .html extension.
Here is the link
http://equity1031.com
Thank you
I found Joomla in the source code http://www.joomla.org
it would say html ---
however others I have seen begin the page with an xml version....followed by the html doc type information.
Could be, joomla with some plug in or module that changes the first line of the page. Not sure what template was used
with the joomla program.
however others I have seen begin the page with an xml version....followed by the html doc type information.Not HTML -- an XML prologue isn't valid in HTML. It would be a profile of XML, probably XHTML.
GypsyOwl
12-28-2006, 11:22 PM
Not HTML -- an XML prologue isn't valid in HTML. It would be a profile of XML, probably XHTML.
Yes Twey (thank you for the correction)
I'm sorry vanboa, Im still a newbie and I didn't read it right. It said...
<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
I am still lost in Joomla. I installed it but, havn't figured it out yet.
vanbao
12-29-2006, 06:58 PM
Thank you everyone for you help.
johnpeter
07-01-2009, 06:12 PM
checkout http://www.mytemplatebox.com for free website template
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.