Hi,
I'm new at web design.....
How can I repeat the same information on all of pages of the web site (example: "Important dates" section are on each page, If I want to update this information, I have to go to each page and change it)?
Also I'm using a cascading style sheet.
Can I put this info into style.css folder? if so how? or is there a better way on doing this?
thanks...Regarding repeating content for each page use server-side includes. Depends on your hosts, but usually it can be ASP.NET or PHP. You include one file on multiple pages. If a change is needed, you make it in one file and the rest of the pages which call the include at instantly updated.
Regarding your style sheet, you use Cascading Style Sheet (CSS) to control the formatting of text, images, tables, images, links, etc in a web page. Thus, you use your style sheet to format the text inside the web page you wish to repeat or anywhere else for that matter.
If you need additional help, let us know.If you have sever side languages like php, asp or jsp, you can do it easy. Just create a file that will be your fixed content and then make it include a body file, the content that will change. But if you need to create a pure html file, you will have to use "dreamwever template"
I'm new at web design.....
How can I repeat the same information on all of pages of the web site (example: "Important dates" section are on each page, If I want to update this information, I have to go to each page and change it)?
Also I'm using a cascading style sheet.
Can I put this info into style.css folder? if so how? or is there a better way on doing this?
thanks...Regarding repeating content for each page use server-side includes. Depends on your hosts, but usually it can be ASP.NET or PHP. You include one file on multiple pages. If a change is needed, you make it in one file and the rest of the pages which call the include at instantly updated.
Regarding your style sheet, you use Cascading Style Sheet (CSS) to control the formatting of text, images, tables, images, links, etc in a web page. Thus, you use your style sheet to format the text inside the web page you wish to repeat or anywhere else for that matter.
If you need additional help, let us know.If you have sever side languages like php, asp or jsp, you can do it easy. Just create a file that will be your fixed content and then make it include a body file, the content that will change. But if you need to create a pure html file, you will have to use "dreamwever template"