View Full Version : I Build My Web Pages in Outlook Express
moussant
September 3rd, 2006, 04:25 PM
haha - it's true - that is how unknowledgeable I am. My question is there a way to build a page with only a Top Border that then loads another page as the main body? I am trying to do a hybrid of a review page and frame loading a sponsors page so that the top border will have a little text -- this is our best choice because -- blah, blah blah but then don't have to click to go anywhere as the page being promoted would be fully displayed under that border.
Thanks,
moussant
Biff_Tiberius_Farnsworth
September 3rd, 2006, 04:31 PM
Salutations Moussant
At your stage of learning, I would suggest finding a page on the internet that does what you want. View the source code and copy and paste it into a text document. Change the extension on the text document from .txt or .doc to .htm
Now you can begin to delete things from the source code that you don't want and tinker with it until you have made your own page out of it.
This is how many (including Biff) learned HTML.
Good Luck
~B
moussant
September 3rd, 2006, 04:37 PM
Thinks for your quick reply but I don't think that's exactly what I need. I'm not really trying to create a page - I plan to load the sponsors page in a frame but want to keep a couple inches at the top for my comments - just a header kinda but then the "Real Page" would be the hoplink page. Maybe a better way to explain would be to say I want to load an entire other page into a part of my page
Thanks,
Moussant
DataFeedFile.com
September 4th, 2006, 02:12 AM
You can use HTML frame feature.
It will allow you to include a completely different HTML page or URL.
edesigner
September 5th, 2006, 04:58 PM
This can be done by HTML Frames or Include files.
Can you show the page, would help.
Stephen
Jake
September 6th, 2006, 01:27 PM
You could try something like this with frames...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Sponsored Page</title>
</HEAD>
<frameset rows="10%, 100%">
<frame src="header.html">
</frameset>
<frameset>
<frame src="http://www.sitehere.com">
</frameset>
</html>
alien23
February 5th, 2007, 10:35 AM
haha - it's true - that is how unknowledgeable I am. My question is there a way to build a page with only a Top Border that then loads another page as the main body? I am trying to do a hybrid of a review page and frame loading a sponsors page so that the top border will have a little text -- this is our best choice because -- blah, blah blah but then don't have to click to go anywhere as the page being promoted would be fully displayed under that border.
Thanks,
moussant
I haven't heard anything like this till now..you are confusing me here
Alkarion
January 7th, 2009, 12:47 PM
What your talking about doing is an iframe. The code for this is quite simple, just look up iframes on google.
But please do not code anything in Outlook Express. If you want basic drag and drop functionality use Frontpage (which is awful in itself), at least then your code will be remotely stable. There are standards on the web now such as XHTML 1.0, WCAG, and things such as doctypes which have to be adhered to. Simply making the page 'look right' isn't enough. How do you think your website will look when dislayed on different browsers for example? Or to people with disabilities? There are lots of considerations.
Other alternatives are using Notepad, wordpad, PHP Designer, or Dreamweaver if you have the money, for proper coding. Here is a skeleton of what all your pages should have for the transitional doctype:
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>My website</title>
</head>
<body>
code goes here
</body>
</html>
Or if you want to use frames or iframes, then do this:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>My website</title>
</head>
<body>
code goes here
</body>
</html>
Please visit www.w3schools.com for some good coding information.
vik88
January 9th, 2009, 08:14 AM
i can't believe: how did you build page in outlook?
jane0109
February 15th, 2009, 10:22 AM
This can be done by HTML Frames or Include files.
Can you show the page, would help.
Stephen
Speaking of frames, I would likely use include files instead of frames for search engine friendlier sites. :D
juanbrown
April 6th, 2009, 12:04 PM
I'm smile when reading it.
I am also new in webdesigning and really dont have idea on making on in outlook - cannt imagine it! :)
good job!
dvd2video
April 7th, 2009, 06:55 AM
official source of the cool app: http://www.web-video-player.com
Useful tutorial on google blog:
http://funny-video-youtube.blogspot.com
Koochook
May 11th, 2009, 07:08 AM
frames are not good for da S"Es
Tamour
June 14th, 2009, 12:29 PM
You can try to use ready made HTML email templates, search for it you will find many free templates
Powered by vBulletin™ Version 4.0.3 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.