Web Design Forum: Copywriting my first website - Web Design Forum

Jump to content

WDF
WDF Premium Memberships Reseller Hosting
Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Copywriting my first website Rate Topic: -----

#1 User is offline   Beavy 

  • Dedicated Member
  • PipPip
  • Group: Members
  • Posts: 175
  • Joined: 13-December 10
  • Reputation: 3
  • Gender:Male
  • Location:Uk
  • Experience:Beginner
  • Area of Expertise:I'm Learning

Posted 02 May 2011 - 06:14 PM

Hello, ive nearly finished my first web site and need to copy right it. Can I simply put "Copyright ©2008-2012," followed by the name of the website ? Can you please check the dates as I made them up and im not sure if its correct.

~Thanks
0

#2 User is online   notbanksy 

  • Refreshingly Belligerent Marxist
  • PipPipPipPipPip
  • View gallery
  • Group: Members
  • Posts: 3,937
  • Joined: 14-February 08
  • Reputation: 183
  • Gender:Male
  • Location:Darkest rural Somersetshire
  • Experience:Advanced
  • Area of Expertise:Copywriter

Posted 02 May 2011 - 06:19 PM

First off, you should learn the difference between copywriting and copyright. ;) Yes, it's fine to just put ©2011 on your website footer. Anything you create, you automatically own the copyright. There's nothing else you need to do unless someone actually steals your work.

Not sure why you would put next year's date on your copyright notice. Why not just update it annually so that the current year is covered?
0

#3 User is offline   itodd 

  • Dedicated Member
  • PipPip
  • Group: Members
  • Posts: 111
  • Joined: 17-April 11
  • Reputation: 29
  • Gender:Male
  • Location:UK
  • Experience:Advanced
  • Area of Expertise:Designer/Coder

Posted 02 May 2011 - 06:29 PM

Anything that you create can receive automatic copyright (providing that it is covered by copyright laws set by the IPO)

When you create a website you can place a copyright notice on it to let others know that you own the copyright. This is usually done by using the © symbol, name of the copyright owner and the year the work was created.

You cannot claim to own copyright from previous year unless that is the year the work was created.


Everything you need to know about copyright can be found on the IPO website: http://www.ipo.gov.uk/types/copy.htm
1

#4 User is offline   Beavy 

  • Dedicated Member
  • PipPip
  • Group: Members
  • Posts: 175
  • Joined: 13-December 10
  • Reputation: 3
  • Gender:Male
  • Location:Uk
  • Experience:Beginner
  • Area of Expertise:I'm Learning

Posted 02 May 2011 - 06:35 PM

Thanks for your help :)
0

#5 User is offline   Gibson 

  • Web Guru
  • PipPipPipPipPip
  • Group: Members
  • Posts: 1,313
  • Joined: 31-October 07
  • Reputation: 140
  • Gender:Male
  • Location:SE UK
  • Experience:Intermediate
  • Area of Expertise:Designer/Coder

Posted 02 May 2011 - 08:02 PM

View Postnotbanksy, on 02 May 2011 - 06:19 PM, said:

Why not just update it annually so that the current year is covered?


You can use php to display the current year. It's a way of getting it to automatically update.
0

#6 User is offline   itodd 

  • Dedicated Member
  • PipPip
  • Group: Members
  • Posts: 111
  • Joined: 17-April 11
  • Reputation: 29
  • Gender:Male
  • Location:UK
  • Experience:Advanced
  • Area of Expertise:Designer/Coder

Posted 02 May 2011 - 08:35 PM

View PostGibson, on 02 May 2011 - 08:02 PM, said:

You can use php to display the current year. It's a way of getting it to automatically update.


I wrote this code a short while ago, feel free to use it
<?php
/*
 *	www.iaintodd.co.uk
 */
 function copyright($year) {
	if(is_numeric($year) AND is_int($year)) { // Is the year an integer number?
		echo "&copy Copyright ";
		if($year == date(Y)) {
			echo $year;
		}
		else {
			echo $year." - ".date(Y);
		}
	}
	else {echo "Please enter a year as a number"; }
} ?>

and to use it simply do this:

<?php copyright(2011); ?>

This post has been edited by itodd: 02 May 2011 - 08:36 PM

0

#7 User is offline   Sazzad 

  • Expert
  • PipPipPipPip
  • View gallery
  • Group: Members
  • Posts: 628
  • Joined: 21-February 07
  • Reputation: 38
  • Gender:Male
  • Location:New York, New York
  • Experience:Advanced
  • Area of Expertise:Designer/Coder

Posted 02 May 2011 - 11:22 PM

Or you could simply just get the date using php and add your personal copyright.
&copy; <?php echo date("Y"); ?> Yoursite


Also if you're located in the US you should read up on this: http://www.copyright...aq-protect.html
0

#8 User is offline   itodd 

  • Dedicated Member
  • PipPip
  • Group: Members
  • Posts: 111
  • Joined: 17-April 11
  • Reputation: 29
  • Gender:Male
  • Location:UK
  • Experience:Advanced
  • Area of Expertise:Designer/Coder

Posted 02 May 2011 - 11:31 PM

View PostSazzad, on 02 May 2011 - 11:22 PM, said:

Or you could simply just get the date using php and add your personal copyright.
&copy; <?php echo date("Y"); ?> Yoursite


Of course, but my code will keep the year of creation which is one of the the most important factors regarding copyright, documenting when the work was created.
0

#9 User is offline   Lev 

  • -'-
  • PipPipPipPipPip
  • Group: Members
  • Posts: 3,946
  • Joined: 28-October 09
  • Reputation: 258
  • Gender:Male
  • Location:Russia
  • Experience:Advanced
  • Area of Expertise:Web Designer

Posted 03 May 2011 - 06:32 AM

For laziests :):
&copy; &ndash; <script type="text/javascript">
var cTime = new Date();
document.write(cTime.getFullYear());
</script>

0

#10 User is offline   Beavy 

  • Dedicated Member
  • PipPip
  • Group: Members
  • Posts: 175
  • Joined: 13-December 10
  • Reputation: 3
  • Gender:Male
  • Location:Uk
  • Experience:Beginner
  • Area of Expertise:I'm Learning

Posted 03 May 2011 - 08:15 AM

This may seem a very nooby question but is there a way to get this to show on all pages to save me copying the code onto every page?

This post has been edited by Beavy: 03 May 2011 - 08:15 AM

0

#11 User is offline   itodd 

  • Dedicated Member
  • PipPip
  • Group: Members
  • Posts: 111
  • Joined: 17-April 11
  • Reputation: 29
  • Gender:Male
  • Location:UK
  • Experience:Advanced
  • Area of Expertise:Designer/Coder

Posted 03 May 2011 - 08:31 AM

If you're using php for your site you could include a footer file with the code it. But you will still have to add the include code to each page
0

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users