7 segment LED display

I am trying to m ake an 7 segment LED display count down from 9 to 0 and repaet over and over. I am a newbie at arduino codes so if some one would please give me a link or a code it would appreciated thanks

You are driving the display direct from arduino pins?
Is your display common anode or common cathode?
Wire it up accordingly per this diagram with 330 ohm resistors, with arduino pins in place of the shift register and per your parts data sheet.

Then write a simple loop to turn the segments on/off to make the numbers you want.
There are, of course, much fancier ways of doing this.

segmentA = 2; // assign pin numbers, repeat as needed
void setup()
{
pinmode (segmentA, OUTPUUT);  // set up as outputs, repeat as needed
void loop()
{
// write out 9, assumes that HIGH turns a segment on
//    A
// F    B
//   G
// E    C
//    D

digitalWrite (segmentA,  HIGH);
digitalWrite (segmentB,  HIGH);
digitalWrite (segmentC,  HIGH);
digitalWrite (segmentD,  LOW);
digitalWrite (segmentE,  LOW);
digitalWrite (segmentF,  HIGH);
digitalWrite (segmentG , LOW);
delay(1000); // show it for 1000ms (1 second)
// repeat for 9, 8, 7,6,5,4,3,2,1
} // back to void loop