|
| ||||||||||
| Tags: asp, code, css, html, link, pattern, sql, style, style sheets, web, website |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| ||||
| ||||
| Change the pattern of all the web pages in my website
|
|
#2
| |||
| |||
| Re: Change the pattern of all the web pages in my website
You are using a very old technique to change the pattern of all the web pages in the website. Manually doing this is a very tidy task and you may also skip some places to modify. Use CASCADING STYLE SHEETS(CSS) to solve your problem. There are 3 types of CSS:
Last edited by Katty : 18-12-2009 at 05:54 AM. |
|
#3
| ||||
| ||||
| Re: Change the pattern of all the web pages in my website
You can change the pattern of all the web pages in the website as follows, suppose you want to change a heading: h1,h2,h3,h4,h5,h6 { font-family:garamond ; font-color:magenta } Save this as a .css file and use the <link> tag to link it to all the web pages where you want to make the changes. Ever developer follows such a pattern for his site. Last edited by Praetor : 18-12-2009 at 05:52 AM. |
|
#4
| ||||
| ||||
| Re: Change the pattern of all the web pages in my website
Inorder to change the pattern of all the web pages in the website, the style tag is used. It is defined in the head section and the pattern that you want to select for particular tags like headings, paragraphs are set over there. Example: <html> <head> <style><--! the style that you want to use for particular tags--> </head> <body> Body of the web page <body> </html> Last edited by Modifier : 18-12-2009 at 05:53 AM. |
|
#5
| ||||
| ||||
| Re: Change the pattern of all the web pages in my website
You can use the inline style sheet to set a pattern for a particular tag in the web page. You can do this for headings, paragraphs, etc. For instance: <p style=font-color:red> content of the paragraph </p> This is inside the body section of the webpage. It is tough to change the pattern of all the web pages in a website.
__________________ Grand Theft Auto 4 PC Video Game |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "Change the pattern of all the web pages in my website" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Need to change website host | sonuinfy | Networking & Security | 1 | 15-11-2010 11:39 PM |
| How To Track Changes on Any Website Pages | Santy | Technology & Internet | 5 | 30-01-2010 11:40 PM |
| How to recover lost pages of website? | Sandy22 | Technology & Internet | 5 | 20-12-2009 12:03 AM |
| Use PHP to change part of my pages | KACY5 | Software Development | 3 | 23-11-2009 03:27 PM |
| How to print an article of several pages of a website? | Benjamin | Windows Software | 3 | 30-04-2009 10:50 PM |