Stop using premade lookups!
Designing your own lookups is fun and easy!


Welcome!
Welcome to Deathwinks's lookup help page, run by TheLoneTiel. Here you'll discover the codes to make your own lookup. Stop using premades and discover the thrill of making your own lookup. I provide base codes for your lookup as well as individual codes. I'll also give you CSS and HTML basics, and tips on making your lookup, from common mistakes to tutorials. Take a look around. Remember, the most important part is having fun!
Yes, I know this isn't on Deathwinks's page yet. I'm leaving that guide up until I can complete the new version.


NARVIGATION

About This Page
There are a few things to keep in mind when using this page. For quick reference, look at the navigation at the top of the page.
  • In the main navigation, signifies things added or changed since the last update of the page.
  • Signifies information that are useful for beginners.
  • Signifies more advanced techniques that may be confusing for those not familiar with HTML, CSS, or their graphics program.
  • Acronym This type of text identifies an acronym (e.g. HTML). Hover your cursor over it to decipher it's meaning. Other difficult or unfamiliar terms may also explained in this manner.
  • Text boxes that are pink and red denote CSS codes. Codes are written in the format shown in this example. Any codes that look like this will go in your style tag. If you don't include the style tag, they won't work. They can be placed in any order.
  • Text boxes that are blue contain only HTML codes, written in the format shown below. They are not part of the style tag and must be placed outside of it. These codes will normally appear sequentially in the text (i.e. if you have two image codes, the image that comes first in your code will appear first) unless their position is dictated by an accompanying style tag.
  • Text
  • White text boxes may contain both HTML and CSS (within style tags) and are to be used as a whole, or are otherwise undefined and exceptions to the above rules.
  • ^style class="type/css"^ div {border-color: black; border-style: solid;} ^/style^
  • Bulleted list items normally describe the text box and code that immediately follows.
Tip: Not following me? This page only confusing you? Why not see what Neopets has to say? That's right, Neopets has their own HTML pages, take a look!
  1. Neopets HTML Guide
    A basi introduction to HTML.
  2. Code Filter Index
    About the code filter and why it is in place. Also, links to all the other Neopets HTML pages.
  3. Coding Tips
    Advice straight from the coders at Neopets HQ.
  4. Common Mistakes
    A page that discusses common mistakes when using the code filters.
  5. Common Errors
    An explanation of frequent errors when using code filters.


NARVIGATION

Base Codes
Here are the basic codes I use when I'm making a user lookup.
This code is full of notations to remind you of what each code does. Everything between is a CSS comment and can be deleted without any effect on the codes. Er. I'll come back to this one, it broke.
This code is the same, but without any comments and is condensed for space. This is what you will want to use once you have a basic understanding of CSS.
An alternative code, places information in boxes.


NARVIGATION

Individual Codes
Here are some separate codes that I use for most of my lookups...
  • Codes about Navigation
  • Change the background of the header across the page.The default size is 1000x77px.
  • Remove the header on the page.
  • If you get rid of the default links, be sure to include them somewhere on the page. This code gives you the basic links around the site.
  • This code will give you buttons for navigation! They are very nifty; I like them.
  • Adding things
  • To add your own shield, use this code. You will need to edit the "top" and "left" numbers to fit, and you may want to make your shield larger to account for any discrepancies between browsers.
  • To add a scrolling DIV area that you can add your own text into, use this code. Change the "height" and "width" dimensions accordingly.
  • Yarr
  • Yarr
  • Removing things
  • You'll note that most of these codes use "display:none;". This tells that element (be it an image or a table) to not display at all. It will take up no room on the page and be as if it didn't exist. However, in some instances, it might be better for your page design to have that element take up space on the page, even if it isn't visible. If that is the case, change "display:none;" to "visibility:hidden;". If the visibility is set to hidden, it will still take up room on a page, for instance, the default User Lookup banner will be invisible, but will still bump down the page and otherwise not affect the layout.
  • Remove the top and bottom parts of the page.
  • Remove the background from the top and bottom parts of the page.
  • Get rid of all images on the page:
  • If you get rid of the images and would like to add certain images back as part of your layout, use this code.
  • Remove the Neopets advertisement in your gallery, shop, or other page.
  • Yarr
  • Yarr
  • Changing things
  • Change the size of an element by altering its height and width. This should be fairly straight forward, but remember to follow with "px" to designate the units as pixels. Also, when coding petpages from scratch, it can be useful to attribute an image height and width to speed up loading and prevent the text from "jumping around" (for lack of a better term) as the page loads. Size reference: A Neopets avatar is 50x50 pixels. The standard pet image is 150x150. This can be used on anything from images to divs and tables, but text should be changed with other methodology.
  • Alter transparency of an element, such as an image, table, or div. The first part is for use in Internet Explorer, the other is recognized by Firefox. The first would use "100" as fully opaque (not able to see through), while 0 would be totally transparent. The second is the same, but using decimals instead. Think of the numbers as percentage points, with 100 being solid and 0 being invisible. Keep in mind that you can use this to make the entire section of a lookup transparent, but it will also make the text and images transparent in equal quantities, which might make them illegible. To make only a background transparent, consider making the outer element transparent and overriding the children with full opacity.
  • Cropping" pictures of pets. This will "crop" the images of your pets to a different size. The original size is 150x150 px. The "direction" portion will align the picture to the left hand side, which is typically useful.
  • Altering Text
  • Size
  • Font Family (typeface)
  • Capitalization. Capitalize" will add a capital letter to every word. Uppercase" will make everything in caps lock. Use sparingly. Lowercase" will make everything uncapitalized. Good for disguising uncapped pet names.None" removes any inherited value. See next code as to how to use that.
  • Capitalizing a pets name on pet lookup. Caps all instances of the pet name with minimum extraneous capping.
  • Capitalizing a pets name on user lookup. Just caps the names of your pets.
  • Text-Decoration. Underline" adds a line under text (like standard links). Overline" adds a line over the text. Line-through" adds a line to the middle of the text. The only acceptable use of "Blink" is as follows: Schrödinger's cat is not dead.
  • Changing color.
  • Line Height. You can use a number measurement or percentage. Blabbity blah blah so you can see the difference.
  • Indenting the first line. This looks really classy when added to petpages with long paragraphs. You can use a length or a percentage.
  • Changes text direction. "ltr" stands for "Left To Right". "rtl" stands for "Right to Left". Couldn't a guessed that, eh? This is rarely useful, but can be used on occasion for some interesting effects. "ltr" is standard.
  • Letter Spacing. Changes the amount of room between letters.
  • Compiled. When writing long petpages, I use a version of this code, as it makes clean, legible paragraphs. ("P" stands for Paragraph. Easier to use divs though.)


NARVIGATION

Example Lookups
Here are some finished premade lookups for you to take apart or to use as they are. If you want to use the codes but insert your own images, please keep the link to this page. Otherwise, just use them for understanding as to how the codes work.


NARVIGATION

Banner Navigation Tutorial
To make your top banner on a page match up with Neopets navigation, you need to take the base image and open it in your graphics program. You can use Microsoft Paint, a standard on Windows computers, but the results might not be very good unless you are very careful. You can download a free program called The GIMP, which has layers and other nifty things that will make your graphics life much easier. Photoshop will of course work with this, though my favorite program is Corel Photo-Paint. Simply, you need to keep the image that exact same size and keep the divided box for the navigation and Neoclock identical in size and shape. Beyond that, everything is your choice. Keep in mind, however, events such as Neomail and Neofriend requests, which appear along the top of the screen. High contrast patterns will make that hard to read. As well, people use varying site themes, some of which have white lettering and others that use black. Use a medium tone for your background for the text links so no one will have a hard time reading them. Black and white go with everything, don't worry about it clashing.


NARVIGATION

Lookup Tutorial
This is how I make a lookup. Step by step.


NARVIGATION

Positive Features
Talk about yourself, learn about color theory, yaddayadda...
  1. Talk About Yourself
    Lately, it seems like most people don't bother telling about them selves in their lookup. I can't imagine why this is, they find it much easier to tell you not to neomail them. Try reviving a bit of this "lost art" of telling about yourself in your lookup, someone will surely find it interesting!
  2. Simplistic Lookups
    Keep it simple! Elegance and simplicity are often tied very closely. Don't use too broad of a color scheme, keep it to two or three complimentary colors. Use a consistant font face, don't use Arial for half, Georgia for the links, then use two or three different fonts in your graphics. If you have a theme, keep with it and resist the urge to include things that don't match.
  3. Creative Themes
    Be creative! While many themes on Neopets have been used again and again, there are still almost limitless possibilities. Look at my list of Neopets images for inspiration on where to find images to use in graphics.
  4. Test!
    Test your lookup from every perspective you can. Major things to keep in mind are browser preference and screen resolution, but operating system (Apple, Windows, Other), monitor type (the difference between /CRT/ and /LCD/), connection speed, site theme, Premium or non-Premium, with and without status events (Neomails, etc.), Something Has Happened! random events, even down to the layout of the browser will make a difference in the display of your page.
  5. Be content with your lookup!
    If you like your lookup, that is the most important thing. Don't worry if others rate your lookup poorly.


NARVIGATION

Negative Features
Keep these in mind when making a lookup.
Don't use IE only codes, test in all browsers and resolutions as you can...
  1. Large Backgrounds
    People on dial-up connections may avoid your lookup if it has a large background. Keep the file size below 100k for it to be okay on even slow connections.
  2. Large/Multiple Pictures
    Same as above. As cute as your cat may be, if it stretches the screen and takes forever to load, don't put it on your lookup. If you have 15 flashy images on your lookup, even if they are fairly small, it will hurt most dial-up connections. Multiple images may also impair how older computers function, sometimes to the point of shutting down the computer.
  3. Flashy Graphics
    Again, animations will hurt non-highspeed connections and older computers. Animations also are annoying, depending on the individual graphic. I know several people with eye problems so that when they see flashy GIFs, they get severe headaches. Elipsy is no laughing matter either. Bottom line, animations are often annoying and an eyesore.
  4. Only /IE/ Compatible Codes
    If a lookup only works well in Internet Explorer, you can bet there will be annoyed people out there. Often, with a little research, you can find how to do the same thing in all browsers, not just /IE/. As well, with the introduction of /IE 7/, you will find that it displays codes differently than IE 6, so the codes you are used to won't work for an even larger portion of the net population.
  5. Screen Resolution Incompatibility
    A growing number of people are creating lookups that work only in 1024x768 or larger resolutions. Keep in mind that there is still a large number of people using 800x600 monitors. In a simular vein, most of these old monitors are /CRTs/, which means they often display colors differently than newer /LCD/ screens.
  6. Eye-Bleeding Colors
    When making your lookup, make sure you use nice colors. Neon bright colors on black might look cool, but that doesn't mean they look good. If your text is bright green on dark green, chances are, no one is going to read your text because their eyes are watering. Simularly, don't put dark grey text on a black background if you want people to read it. Unless their monitor has unusually high contrast, they wont be able to read it and will figure if you cant bother making the text legible, you don't have anything interesting to say.
  7. Chtspk
    If you write your lookup in chtspk, hackspeak, or any variation thereof, many people worth knowing won't bother deciphering your lookup. It does NOT make you look cool, it makes you look like an illiterate idiot. Even if you use chtspk in normal conversation, take the extra time to make your lookup presentable. First impressions are very important.
  8. Music
    Music files are generally big, causing for slow loading problems. Many people also like to listen to music on their computer as they are on the internet. So when you have music on your lookup, it interferes with their own music. Music is annoying, especially if someone has different tastes in music than you do.
  9. And so on...
    There are so many things to go wrong!


NARVIGATION

Basics of HTML and CSS - The Guide
Welcome to the wonderful world of HTML and CSS!
CSS stands for Cascading Style Sheets. What is that? Well, basically, you use CSS to say how your HTML works and looks.
HTML?! You've probably heard of HTML. It is the computer language that each and every webpage you view has been coded in. It is not the only language used, you've probably heard of /PHP/, /ASP/ and lots of other confusing acronyms thrown about, but you don't need to worry about those.
Lets first start with the Neopets default user lookup. It looks something like this, when no HTML or CSS has been added.
**First screenshot of lookup here**
This page has been coded in HTML (for our purposes at least). We can add what is called a "Document-Level Style Sheet". This is just a way of saying that our CSS is added to the page it is being used on. Most webpages have "External Style Sheets", but that is another lesson.
A typical HTML code looks like this:
The "name" stands for the name of the tag being used. It might be "DIV" (A "division", used to break up blocks of text), "b" (bold, makes text stand out), "small" (decreases font size), or something else entirely. An "attribute" is something special added to the tag. It might be "color", "font-size", "border", or "class". The "value" is the value that you want that attribute to have. For a color attribute, you'd have a value of "red", "#FF0000", or similar. For a size attribute, you might have "3", "+2", "14pt", or similar. A border attribute might be "1" or "2px". Classes are special, and can be any set of alphanumeric characters that do not start with a number. Basically, that means any letters and numbers can be used, so "top", "t3", and "Pants" are okay, but "4thewin" and "OMG!" are not. You use them to name an HTML element so you can come back with CSS and modify that element specifically.
So our sample code might end up looking like this:
When using CSS, you follow the same basic layout, just in a different format (or syntax) and using different terms.
A basic style tag looks like this:
Selector" refers to the name of the tag, so "b" still works, as do all our other examples. "Property1" is the name of the first property. While CSS usually uses the same names as attributes, you may have to be careful. Try them first, and if a standard attribute name doesn't work, you may have to look it up. Properties can be things like "color", "margin", "border-color", "font-size", and "font-family". "Value1" stands for the value of the first property ("property1"). It would be something like "red", "10px", "#0000FF", "24pt", and "Arial", varying for each property.
A bit confusing, eh? Don't worry, it is just the names of the different elements that change, not how they work.
This is how we'd "declare" (assign formatting to an HTML tag) the same thing with our bold tag.
Whoa, where'd all that other stuff come from?
Well, style sheets have to be set off from the HTML document, You do this by putting it within style tags. They work just like our other tags, but instead of having text between the opening and closing tag, you put CSS tags. So it is useful to know HTML before you start with CSS, but for Neopets User Lookups, it isn't required.
The main mistake I see with CSS is that people forget to add the {style} at the beginning and the {/style} at the end of the tag. That means the browser (the program used to access the internet, such as Internet Explorer or Mozilla Firefox) just reads it as plain text, not as a CSS declaration. (The slashes at the end of each part are an annoying consequence of Neopet's new filters. You'll need to include them if you plan on using any positioning of stuff using CSS.)
Now that you have a basic understanding of what CSS looks like, lets take a peek at what it does.
Let us start with the Neopets user lookup.
This is how it looks unformatted:
**screenshot again**
Now I'm going to add this simple CSS code:
What this will do is add a red (#FF0000) border (a border that is 1px in width and that is solid, not dashed or dotted) to all the images on the page. All the tables will have a blue (#0000FF) border. Tr tags are part of table (tr stands for table row), and they get a purple border. But, because of the way HTML displays, you don't get to see the border. Tds (table data cells) will get a bright green border. Each tag also gets a padding of 1 pixel. What that does is add 1 pixel of room between each tag, so it is easier to see what happens to each section.
This is what happens to the Neopets user lookup with just those simple tags:
**Screenshot of lookup with borders**
Kind of interesting, isn't it? You can tell how the Neopets user lookup document is made up.


NARVIGATION

Basics of HTML - The Codes
Bold tags, italics, images, divs, spans, etc.
  • Basic HTML is usually quite simple. Here a few simple examples to familiarize yourself with the format of HTML. The first line is not an actual code, but an example using the "proper" HTML terms I'll use.
  • ^name attribute="value"^Text^/name^Hello World!Neopets
  • To make text italic, bold, or underlined, the codes are very simple.
  • To link to another webpage, you can use an anchor tag. The second link is shorter, it will assume the website you are browsing is the one you are linking to, so you only fill in the part after the intial ".com". Because you should never (and cannot) link to a site outside of Neopets, you can use this code to link within the Neopets site. The " -disallowed_word- is the hyperlink reference, the specific URL you want to go to.
  • To link to something within a webpage, you must assign it a name. You'll notice that you can navigate through this page from the top without scrolling, this is because each header you see here has a specific named anchor tag. This code has two parts, one is an example to name something. You can enclose text in the tag or just put it before the text to make it invisible and not modified as a link. Alternatively, if you know your stuff, when you give any element on a page an ID ("id='whatev'"), it can be used to link to an image, a header, or anything else without additional coding.
  • To add an image, use this code. The slash at the end is not needed, but is proper /XHMTL/ and merely confirms with the browser that the tag stands alone and doesn't have an end tag.
  • A division (DIV) is used to separate a section of a webpage. These are better to use than tables (tables are only meant to hold data) and are usually easier to work with. A DIV left alone won't change the appearance of text but can be easily modified by CSS. They can also be used in place of paragraph tags.
  • If you only want to edit a small section of text, you can put it within a span. Spans work like DIVs, they don't look different until you change them, but they are useful if you want to make a single sentence change color, or whatever. Give them a CSS class or ID and you'll soon become good friends.
  • To add a line break in between text, you can use a break tag. This will start a new line. Use two in a row to add a space between lines.
  • Yarr
  • Yarr
  • Yarr


NARVIGATION

Articles
Articles written by me or others for more complex lookup ideas.


NARVIGATION

Other Resources
Others things to use when making a lookup. Data is displayed in the following format:
  1. Website Link
    Description

  2. Book Title - Author
    Description

  3. Website Search Term
    Description

Resource Navigation
Neopets Resources
The following links are on Neopets pages, therefore they should be safe to visit. I have visited them with no ill effects. I do not monitor them, I do not run them, I am not in anyway associated with these pages, but they provide more information on the topics I cover. As well, some of these may support poor coding habits or codes that I personally do not approve of. Use at your own risk.
  1. http://www.neopets.com/help/html1.phtml
    The Neopets HTML guide
  2. http://www.neopets.com/~CSSish
    Amyishh's CSS Guide
  3. http://www.neopets.com/~Drakolee
    Multibrowser Lookup Coding
  4. http://www.neopets.com/~Vanuu
    Amyishh's DIV-Styled Lookup Tutorial
  5. http://www.neopets.com/~l00kuphelp
    L00kuphelp's page of lookup codes
  6. http://neopets.com/~csshelp
    CSSHelp's codes
  7. http://neopets.com/~drappastar
    Color names and hexadecimal codes
  8. http://neopets.com/~kaxian
    HTML and CSS codes of all sorts
  9. URL
    Description
Neopet Graphics Resources
The following links are on Neopets official pages. They are perfectly safe. These are my favorite places to get images to use on my lookup graphics. As these are all official artwork by Neopets, you do not need to worry about art theft. Using non-offcial art, or fan art by non-TNT staff, is considered art theft unless you specifically ask the owner or follow the owner's rules.
Tip: Right click on almost any flash image (the exception being Neopets games) and select "Zoom In" to get a closer look. Then take a screen shot (press the Prnt Scrn key on Windows computers) and import that into your graphics program. Standard Flash won't lose quality when you zoom in, so you can make it as big as you want.
  1. Neopet's Backgrounds
    Use the 1024x768 size for large graphics.
  2. Neopet's Sketches
    Use 1024x768 size for large graphics.
  3. Neopet's Screensavers
    Install the screensaver, then take a screenshot (Press the Prnt Scrn key on Windows computers) to get the image. Import it into your graphics program.
  4. Collectable Cards
    While limited and often using older art work, these collectable cards are large enough to use in most graphics.
  5. Trading Cards
    These are not large enough to use in large graphics, but can be traced, and are excellent to use in small graphics.
  6. Neopet's Press Kit
    Very high resolution Neopets images, may contain outdated art.
  7. Battle for Meridell (Flash)
    Flash comic for the Battle for Meridell (the second one)
  8. Hannah and the Ice Caves (Flash)
    Flash comic for the Hannah and the Ice Caves
  9. Curse of Maraqua (Flash)
    Flash comic for the Curse of Maraqua (also the second one)
  10. Lost Desert Plot (Flash)
    Flash comic for the Lost Desert Plot (I think there is another one old one)
  11. Cyodrake's Gaze (Flash)
    Flash comic for The Cyodrake's Gaze plot.
  12. Tale of Woe (Flash)
    Flash comic for the Haunted Woods Plot
  13. Journey to the Lost Isle (Flash)
    Flash comic for the Journey to the Lost Isle Plot
  14. Altador Cup Freebies
    Graphics and backgrounds for the Altador Cup.
  15. Specific Pet Viewer (Flash)
    This link will take you to the flash image of any pet. Change the name at the end to see the pet. You can resize your browser window, then screenshot the image for a large version of any Neopet that is good for graphic use.
  16. Neopet's Basic Site Theme
    Neopet site themes offer large, tantalizingly clear PNG images. Change the end of this url (which is for the default themes) to a number between 1 and 15.
  17. Neopet's Maraquan Site Theme
    These are for the Maraquan theme, change the end number to something between 1 and 10 to see all the option.
  18. Neopet's Qasalan Site Theme
    These footer images are from the Qasalan theme and range from 1 to 9.
  19. Neopet's Valentine's Site Theme
    The Valentines sidebar nets us images 1 through 9.
  20. Neopet's Space Faerie Site Theme
    The pretty Space Faerie Premium sidebar gives us only 4 images.
  21. Neopet's Altador Cup Site Theme
    The Altador Cup theme gives us 16 images, for each team.
  22. Neopet's Cyodrake's Gaze Site Theme
    This Shenkuu inspired theme has images 1 through 8 for your use.
  23. Neopet's Altador Constellations Site Theme
    A starry theme, you can find images from 1 through 12, for each of the Altador heroes.
  24. Neopet's Tale of Woe Site Theme
    This theme offers you 10 images related to the Haunted Woods plot.
  25. Neopet's Faeries' Ruin Site Theme
    From the Faeries' Ruin Plot, there are 8 rotating images.
  26. Neopet's Purple Site Theme
    Featuring purple pets, the 9 images of this theme are sure to please.
  27. Neopet's Winter Site Theme
    The winter sidebar offers 11 images.
  28. Neopet's Birthday Site Theme
    1 through 7 will give you a variety of party themed images.
  29. URL
    Description
  30. URL
    Description
Books on Coding and Graphic Design
These are the books I use for reference or general knowledge. Yes, I know the idea of literature on paper is strange to some of you, but I find it far easier to manage books than the flip back and forth between webpages on coding. None of these books are specific to Neopet coding, so you might find some of the codes don't pass filters, but they are good for basics. As well, some of you may advance to actual web design beyond Neopets and will find these invaluable.
  1. HTML & XHTML: The Definitive Guide - Chuck Musciano and Bill Kennedy
    This book (copyright 2002) has everything. It lists all available attributes and properties for HTML and CSS codes.
  2. Designing Web Graphics 4.0 - Lynda Weinmann
    This book covers basic web design theory, things like color schemes, typography, focal points, etc. It also does some HTML, CSS, and Javascript. Much of it relates to becoming a professional graphics designer, but it is very good as a jumping off point for designing anything, webpages or print media.
  3. The Zen of CSS Design - Dave Shea and Molly Holzschlag
    A companion to the online CSS Zen Garden, this book goes through some of the website designs and explains the reasoning behind many of the design and aesthetic choices.
  4. Type & Image: The Language of Graphic Design - Philip B. Meggs
    This is an "old school" graphic design book, meaning almost everything in it was done without computers. It goes over fundamentals of image and text placement, color choice, symbolism, and everything in between. It is an older book, but it describes in detail with examples various ad campaigns and the choices that were made.
  5. Title - Author
    Description


NARVIGATION

Frequently Asked Questions
Here are some questions I've come across. Please Neomail me if you have more questions, and I may add them here if I get them often enough!
Question: Can I make a petpage for someone and they can draw me a picture in return?
Answer: No. According to the Editorial you cannot trade art and coding:
Would it be okay for me to draw a fellow Neopian a picture for their Petpage in exchange for them doing some coding for my Petpage?
Alas, no. We don't allow players to "pay" each other for services using Neopoints/items/Neopets/art/coding, etc.


NARVIGATION

Awards
Some people love me too much. =D I don't even nominate myself for these things.



NARVIGATION

Links Out
Other nifty places to visit.


NARVIGATION

Link Back
Tell others about this page.


NARVIGATION

About This Page
Deathwinks's petpage was founded on the 29th of December, 2005. I would like to thank my friends silverstareagle and feralkoala for their initial help, essexweirdo for putting up with any random troubles I have, and the rest of the NeoColours fansite for their support in this page.
This page was written entirely by me, unless noted otherwise. The graphics for this page were made in Corel Photo-Paint 11 and the coding was done entirely in Notepad or Crimson Editor (a freeware text editor) by hand. It uses HTML, CSS and a touch of PHP for converting the page from locally hosted into Neopets compatible coding. The base header image is licensed by the Corel corporation, used with permission.
All codes on this page were created by me, thelonetiel, unless otherwise explicitly stated. Unauthorized redistribution will result in freezings or prosecution. HTML or CSS coding cannot be copyrighted; the manner in which they are written can be. Neopets, eyries, Dr. Frank Sloth, and all those sorts of things all are registered to Neopets, Inc., used with permission.


NARVIGATION

Title
Lorem ipsum.





NEOPETS, characters, logos, names and all related indicia
are trademarks of Neopets, Inc., © 1999-2012.
® denotes Reg. US Pat. & TM Office. All rights reserved.

PRIVACY POLICY | Safety Tips | Contact Us | About Us | Press Kit
Use of this site signifies your acceptance of the Terms and Conditions