the_aggie10
Members-
Content Count
251 -
Joined
-
Last visited
Everything posted by the_aggie10
-
Looking For Test Web Hosting For Scripts Development
the_aggie10 replied to randomdood's topic in Websites and Web Designing
if you are wanting to test your pages why take up space on someones server? just open it in your internet browser....doesnt even require internet connection. -
Funny Audio Thing That Is Al Over The Web
the_aggie10 replied to Albus Dumbledore's topic in General Discussion
"are you his gay lover" "WHAT? NO!" that was a great one AD good find! KUDO'S for you -
2006 Trap17 Awards Category Idea Voting
the_aggie10 replied to Plenoptic's topic in General Discussion
nicely done Pleno. knowing how on-top of things and organized i am i have already voted. and it was nicely laid out. 3 cheers for pleno! -
Can There Be More Than One Universe?
the_aggie10 replied to amit nigam's topic in Science and Technology
the definition of universe is something along the lines of "everything" (cliche i know!) so i really dont think that there is place to be open-minded here. because nothing can be outside of everthing...just my thoughts -
Happy Birthday Jlhaslip! You old ^-~
the_aggie10 replied to NigaiAmaiYume's topic in Web Hosting Support
53?!?!? thats not TOO bad...although you are over halfway to 100 ;P jk...well i hope you are having a WONDERFUL day!! hope to still be around here when you turn 54 -
ok thanks AD. no not thanks because you just insulted me! but yea I GUESS i should say thanks. i was asking this on be-half of a friend
-
I was wondering if there was a program that I could use that would tell me where the pixles were on ethe screen like I put my mouse over it and it tells me.
-
google is your friend...ESPECIALLY when it involves searching/browsing the internet...i searched and found a ton...now you do your half and do it have fun!
-
is a <b>doctype</b>, which holds the rules for different versions of HTML. Learn the CSS Well now that you have gotten just a glimpse of HTML it is time to move on to styling it, which is what CSS does. You can do CSS directly from the HTML document or do it from a totally different document, I personally do it from a totally different one. So, say that I wanted to style that text that we did previously. p { font-family: Arial, Helvetica, sans-serif; color: blue; } Lets dissect this shall we? Ok the very first character "p" is a selector. It selects all of the "p" elements in the HTML. The "font-family" is of course fonts, but it is saying that the first choice is Arial, and if that is not available then Helvetica, or if all else fails sans-serif. As you could have guessed, the last part is saying that the color is to be blue. You cant really look at this without the HTML, so take a look at the next section! Linking the two together In case you were wondering, these two don't just magically find each other. To link the two together you add a link element to it. Here is an example: say you saved the above code as style.css, then in the HTML before you put the closing head tag (</head>) you would add <link href="style.css" rel="stylesheet" type="text/css" /> So, you have got the HTML document from earlier saved as tutorial.html correct? Well go in there and add the link element, so ultimately it will look like this: <html> <link href="style.css" rel="stylesheet" type="text/css" /> <body> <p> This is the text that would appear!</p> </body> </html>Now save that file. and go to your internet browser, and again File>Open>tutorial.html and there you go, the text looks good, but you may have noticed the background looks like total poop, that is for next time. I hope you enjoyed this! -Aggie
-
Hey. i am currently hosted at Xisto and just paid a visit here....and was wondering if we are allowed to be hosted at both Xisto and Xisto?
-
Happy Birthday Jlhaslip! You old ^-~
the_aggie10 replied to NigaiAmaiYume's topic in Web Hosting Support
HAPPY BIRTHDAY!!!! Thanks for helping me out with getting my way around Xisto...hope this is a very special day for you!!! -
Worried About My Mail When someone ships to the Philippines...
the_aggie10 replied to icemarle's topic in General Discussion
sue them? where are you? thats just stupid...sueing for a mix-up....thats really strange.. -
Is Homosexuality Right Or Wrong? your views
the_aggie10 replied to wakelim's topic in General Discussion
homosexuality is perfectly o.k! stop being so narrow-minded people. seriously, just cause you arent that way does NOT mean that other people arent. we werent all made the same so there is going to be some originality in the world. please stop being so ignorant and accept people for who they are -
ahhh i see...and no problem, i am joining forum and will try to be as active on it is a can fit into my OH-SO-FULL schedule...hah just kidding.
-
i think you should first get members on the game. then once you have 15+ make a forum. known to be more success this way.
-
what do you get if you win one of these awards? a free movie?!? hah just kidding, but is there a prize?
-
Im not good qith graphics, but Kubi's looks really nice because of the shading
-
there is also a CSS tutorial on one of the first few pages. sorry i didnt want to spend too much time making it a tut on how to write CSS and HTML, but thanks for the compliments
-
Ok. Well i am writing this as a series of tutorials i will be doing on this subject, so enjoy. I hope this helps. Introduction to HTML and CSS HTML and CSS are to work together. HTML is what puts the characters on the page, while CSS is what makes everything look outreageous! For instance, I would use HTML if i wanted to put "Xisto is the poop!" onto my page, although if i wanted to make it look nice like this by adding a font, and maybe some color, then I would use CSS. Learn the HTML. Ok this is my little into. to HTML. In order to get words to appear on a page I would put <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd;<html> <body> <p> This is the text that would appear!</p> </body> </html> Now it does not matter how much you indent, or if you indent at all, but I do it cause it is easier to read through. So you have typed this into your text editor, such as notepad. Now it is time to see how it looks! Ok, save it as tutorial.html. Then go to your internet browser and click on File>Open> click on your file and BOOM! There it is. Congratulations, your first page (only applies to those who it applies to heh) Well you might have noticed it doesn't look very spiffy. Which is where the CSS comes in. But before we move onto that let me explain something. CSS adds stuff such as color or font. But you can still do a good bit of stuff in HTML for instance if you wanted to make the text bold it would be <b> Bold text here </b>This would look like this <b>Bold text here</b> Also this line: is a <b>doctype</b>, which holds the rules for different versions of HTML. Learn the CSS Well now that you have gotten just a glimpse of HTML it is time to move on to styling it, which is what CSS does. You can do CSS directly from the HTML document or do it from a totally different document, I personally do it from a totally different one. So, say that I wanted to style that text that we did previously. p { font-family: Arial, Helvetica, sans-serif; color: blue; } Lets dissect this shall we? Ok the very first character "p" is a selector. It selects all of the "p" elements in the HTML. The "font-family" is of course fonts, but it is saying that the first choice is Arial, and if that is not available then Helvetica, or if all else fails sans-serif. As you could have guessed, the last part is saying that the color is to be blue. You cant really look at this without the HTML, so take a look at the next section! Linking the two together In case you were wondering, these two don't just magically find each other. To link the two together you add a link element to it. Here is an example: say you saved the above code as style.css, then in the HTML before you put the closing head tag (</head>) you would add <link href="style.css" rel="stylesheet" type="text/css" /> So, you have got the HTML document from earlier saved as tutorial.html correct? Well go in there and add the link element, so ultimately it will look like this: <html> <link href="style.css" rel="stylesheet" type="text/css" /> <body> <p> This is the text that would appear!</p> </body> </html>Now save that file. and go to your internet browser, and again File>Open>tutorial.html and there you go, the text looks good, but you may have noticed the background looks like total poop, that is for next time. I hope you enjoyed this! -Aggie
-
are you saying that we have a WW coming soon? ok for satire, not very believable heh but nice find.
-
Hs In United States how many HS in each States?
the_aggie10 replied to vietonline's topic in General Discussion
what a coincedence cause im in school right now...but im guessing just go to that states education site and look around....bound to be around there somewhere