· Outpost 10F · Forums · Reply · Statistics · Search ·
Outpost 10F Forums / Archived Topics / HTML
Author Message
demonvamp
Member
# Posted: 18 Aug 2003 09:21
Reply 


How do you make blogs with your own scans in:?

Queen of the U :)

zildjian
Member
# Posted: 30 Jul 2003 12:59
Reply 


Engineering is currently working on a project called the Workshops. Plans are set for releasal hopefully this fall sometime. Stay tuned in to the Departmental Updates Board for more info around that time. This project will be very helpfull to those making inquiries here.

~Zildjian
Assistant Manager,
Engineering


henri
Member
# Posted: 30 Jul 2003 04:47
Reply 


Most web pages make use of tables to correctly allign the layout on the screen. Make sure you always close whatever table tag you are using, or else some browsers will not be able to display your page at all. What has always been helpful to me in making sure I close all tags is using alignment of the html code. For instance...

<table width=... height=...>
 <tr width=100% height=...>
   <td width=... height=...>
     text
   </td>
   <td>
     <image.jpg>    </td>
 </tr>
</table>

The only time this gets a little tricky is when you cut up an image and want to use a table to correctly glue all the pieces of the image together again. In that case, you need to make sure you put the </td> tag directly behind the image tag. For instance:

<table width=... height=...>
 <tr width=100% height=...>
   <td width=... height=...>
     <image1.jpg>    </td>
   <td>
     <image2.jpg>    </td>
 </tr>
</table>

Aligning isn't just good for tables though. It always is a good idea to align your complete HTML in this fashion.

toodles,
Henri



robin
Member
# Posted: 5 Jul 2003 01:35
Reply 


Hey!

< html > < /html>  -- these are required for webpages, everything must be in between these tags.

< head >< /head > -- the head is used pretty much information for the browser, doesn't affect design of the page.

< title >< /title > -- goes in between head tags, gives the webpage a name and will be displayed in the windows title bar.

< body >< /body > -- the main tags used for the "body" of the page.  All writing and webpage content goes in here.

Here's an example:

< html >

< head >
< title >Your webpage< /title >
< /head >

< body >
Content and Information here...
< /body >

< /html >

goose
Member
# Posted: 4 Jul 2003 19:32
Reply 


I see the topic has been moved so i will post it again! :)

< I > Is italics

< B > Is bold

< S > Is striked lettering

< P > Is what you use for paragraphs

< BR > Is what you use for line breaks

Also remember when you start a code that you always finish it by using the / key

Eg. < P > Hello < /P >

< img src=" Insert URL of pic here " >

So it kinda looks something like this:




Lt. Goose

goose
Member
# Posted: 4 Jul 2003 19:44
Reply 


This is from nobbe! He's away so he probably didnt know that they moved the thread! :)

< a href="insert URL here" >What the link is
but it's generally a good idea to tell the link to open in a new window, so you specifiy a "Target" so follow the example below...
< a href="http://www.outpost10f.com/" target="_blank" >Outpost10f.com < /a > which comes out like this: Outpost10f.com



katy8439
Member
# Posted: 1 Jul 2003 05:11
Reply 


I find webmonkey pretty useful too... http://www.webmonkey.com

And if you're interested in colour codes then have a look at

http://hotwired.lycos.com/webmonkey/reference/color_codes/

Remember though, if you're using the hex value to always add a "#" infront of the value so white would be <font face="arial" color="#FFFFFF"> Or as you rightly said  <font face="arial" color="white">

Any more questions just ask :)

Katy


demonvamp
Member
# Posted: 1 Jul 2003 07:42
Reply 


Thanks katy :)

Though how can you tell the difference between one and the other?

Queen :?

katy8439
Member
# Posted: 1 Jul 2003 16:15
Reply 


I'm sorry I'm a bit confused. Tell the difference between what exactly? *l*

Katy


demonvamp
Member
# Posted: 1 Jul 2003 19:29
Reply 


<!--QuoteBegin--katy8439+July 01 2003,16:15--></span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td><b>Quote</b> (katy8439 @ July 01 2003,16:15)</td></tr><tr><td id="QUOTE"><!--QuoteEBegin--><font face="comic sans ms" color="lime">I'm sorry I'm a bit confused. Tell the difference between what exactly? *l*<br><br>Katy<br></font><!--QuoteEnd--></td></tr></table><span id='postcolor'><!--QuoteEEnd--><br>Sorry katy I'm read your post wrong I was half asleep <!--emo&:D--><img src="http://www.outpost10f.com/iB_html/non-cgi/emoticons/haw.gif" border="0" valign="absmiddle" alt=':D'><!--endemo--> .<br><br>There weren't two things to compare...oops <!--emo&:}--><img src="http://www.outpost10f.com/iB_html/non-cgi/emoticons/blu.gif" border="0" valign="absmiddle" alt=':}'><!--endemo--> <br><br>Queen.

demonvamp
Member
# Posted: 30 Jun 2003 19:00
Reply 


Thank you rubi :)

That's very kind of you :)

Queen of the universe

rubi_con
Member
# Posted: 30 Jun 2003 12:45
Reply 


DemonVamp:  I'll pin this topic for you here in the Tech Forum but not in General Chatter.

As for HTML and other language help. If you got questions, feel free to ask :)  otherwise I strongly suggest you supplement your learning by going to HTML Goodies. It's the best learning guide on the web IMHO

demonvamp
Member
# Posted: 28 Jun 2003 15:04
Reply 


Okay, I'm learning HTML the hard way, picking up bits and pieces here there and everywhere, jumping between websites and tutorials like a mad little bunny. Hows about we pin a topic in here, or on the main general chatter page, where people can just drop their knowledge of this alien language for the less technically inclined? I remember reading that someone had been doing courses here, but I missed all that.

Queen of the Universe. Stuck in Run, goto 10 mode. :}

seele01
Member
# Posted: 29 Jun 2003 05:35
Reply 


I think It would probably be better here as this is where all the techy sort of ppl come.  Perhaps they would also include other languages as well.  I know i'm having a problem in VB that i can't figure so i'm getting my mathematically inclined friend to come round and solve it for me, but im sure some ppl out there have other programming questions.

I also do know some HTML and would be happy to provide help wherever possible.  

SEELE 01

demonvamp
Member
# Posted: 30 Jun 2003 11:26
Reply 


Okay, as no one else seems to be playing, here's some stuff.

Text colour codes are as follows:

F0F8FF this is Alice blue
FAEBD7 this is Antique white
00FFFF Aqua
7FFFD4 Aquamarine
F0FFFF azure
F5F5DC beige
0000FF blue
8A2BE2 blueviolet
A52A2A brown

I know you can sometimes use the actual word, i.e Yellow or red too. But it appears to be fritzing out here today for some reason.

More colours to follow.

Queen of the Universe.



goose
Member
# Posted: 29 Jun 2003 00:09
Reply 


Go for it Queen, i think you should put this in the general chatter section and ask the moderators to pin it down ;)


Goose

zildjian
Member
# Posted: 3 Sep 2003 15:17
Reply 


Do you mean the difference between colors?

Simple! There are six digits in a hex code. The first two are the amount of red, the second, green, and the last two are the amount of blue. The range is 0 - F. So #FF0000 would be totally red and #00FF00 would be totally green... you get the picture  :)

~Zildjian
AM, Engineering
ST-atfl, ISA

kabe
Member
# Posted: 2 Oct 2003 09:28
Reply 


<!--QuoteBegin--zildjian+July 30 2003,12:59--></span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td><b>Quote</b> (zildjian @ July 30 2003,12:59)</td></tr><tr><td id="QUOTE"><!--QuoteEBegin-->Engineering is currently working on a project called the Workshops. Plans are set for releasal hopefully this fall sometime.<!--QuoteEnd--></td></tr></table><span id='postcolor'><!--QuoteEEnd--><br>for those non-fall knowing people <!--emo&:P--><img src="http://www.outpost10f.com/iB_html/non-cgi/emoticons/ton.gif" border="0" valign="absmiddle" alt=':P'><!--endemo--> ie. people like me, it means that it'll be around sometime soon...well least thats what i think? <br><br>can people not use such terms as "fall" and that as it only relates to a certain number of people <!--emo&:)--><img src="http://www.outpost10f.com/iB_html/non-cgi/emoticons/smi.gif" border="0" valign="absmiddle" alt=':)'><!--endemo--><br><br><br>~Justin

quincyw
Member
# Posted: 2 Oct 2003 15:46
Reply 


My edit scissors are working overtime. :( The site I usually go to (not that I need it! ) is www.w3schools.org. In addition to the step by step tutorial, there's also various reference guides where you can "look up" each tag and what it does, not only for HTML but CSS! I really recommend this! :)



eagle
Member
# Posted: 2 Oct 2003 11:54
Reply 


It's not really 'proper HTML' per say, but color="amandy" gives you this lovely violet color I'm using here.

Generally speaking, tags should be in all lower case.
Be sure to enclose all tag parameters inside quotation marks.
ie:
Code Sample
<font color="00ff33" face="Comic Sans MS" size="2">


Strictly speaking, <p> and <center> tags should not be used. They have been replaced by the <div> tag, and are only kept in browsers for backwards compatibility. The align parameter, which is the one most commonly used with the tag, can be set to left, right, center, or justify.

I have found that the best way to learn HTML or any other programing language is to pick apart already existing code to see how it works. So go to web pages you like and take a look at the source to see how they did it. You can also save the page and tinker around with things. Have fun, and good luck.

~Eagle~

lzrman
Member
# Posted: 2 Oct 2003 19:43
Reply 


Well this eagle font color tag gives me this color *L*

try http://www.htmlgoodies.com/


Lzrman

shaker
Member
# Posted: 17 Oct 2003 19:31
Reply 


<!--QuoteBegin--eagle+Oct. 02 2003,11:54--></span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td><b>Quote</b> (eagle @ Oct. 02 2003,11:54)</td></tr><tr><td id="QUOTE"><!--QuoteEBegin--><font color=amandy face=tahoma>It's not really 'proper HTML' per say, but color="amandy" gives you this lovely violet color I'm using here. <br><br>...<br><br>~Eagle~<!--QuoteEnd--></td></tr></table><span id='postcolor'><!--QuoteEEnd--><br>That's violet? *blinx* oh right! I'm colour-blind!  <!--emo&:P--><img src="http://www.outpost10f.com/iB_html/non-cgi/emoticons/ton.gif" border="0" valign="absmiddle" alt=':P'><!--endemo-->

eagle
Member
# Posted: 17 Oct 2003 21:11
Reply 


Actually, it's more of a lavender. =P

louise
Member
# Posted: 31 Oct 2003 08:08
Reply 


I am rubbish at HTML, but I use this very useful guide.

It has a color palette too which is very helpful!!


annabella's HTML help


It's organised into tutorials, no technical language...even I can understand it :)

Hope this helps *hugs*
Loo

kittykat
Member
# Posted: 31 Oct 2003 08:12
Reply 


I use anabella! :)

louise
Member
# Posted: 1 Nov 2003 14:31
Reply 


It's good isn't it?:)
Loo

kittykat
Member
# Posted: 1 Nov 2003 14:47
Reply 


definitely! easy to understand :)

KK

presbyguy
Member
# Posted: 6 Nov 2003 11:44
Reply 


i learned HTML from a website that Krillen showed me he said that plugboy made it. I can do stuff with it now im no wizz though.here it islayouts

Your reply
Bold Style  Italic Style  Underlined Style  Image Link  URL Link     :) ;) :P :( :K :D :D ... Disable smileys


» Username  » Password 
Only registered users can post here. Please enter your login/password details before posting a message.
 
Page loading time (secs): 0.026
Online now: Guests - 4
Members - 0
Most users ever online: 215 [30 Aug 2017 14:12]
Guests - 215 / Members - 0
Powered by: miniBB™ © 2001-2024