Single Copyright Multiple Pages

Joined
Jan 16, 2014
Messages
2
Reaction score
0
Points
1
I am not sure if it is possible, but I would think that it is.

When using CSS and multiple webpages; is it possible to use a single

& copy NAME

and then have the exact same info show on multiple pages, that way your are not forced to repeat the same content?
 

vansmith

Senior Member
Joined
Oct 19, 2008
Messages
19,924
Reaction score
559
Points
113
Location
Queensland
Your Mac's Specs
Mini (2014, 2018, 2020), MBA (2020), iPad Pro (2018), iPhone 13 Pro Max, Watch (S6)
You could use Javascript to do this - simply have the JS replace the contents of a div or span with the copyright information and then simply include a div or span on each page with the appropriate id. So, the JS would look something like:
Code:
document.getElementById("copyrightInfo").innerHTML = "Here is the copyright"
. On each page, you'd have an element with the id "copyrightInfo". Does that work?
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top