Albus Dumbledore
Oct 1 2006, 07:31 AM
| | well, i really think that that the yourhtmlsource.com is the best link that anyone has provided in this post so far i see the most informationa nd from what ive read so far its the easiest to understand even though i know most of what their saying. lol
thank you all for your input on HTML sites, and although i am well of in HTML i am still going to go through them all except w2 schools because they dont explain stuff very well. and read all of the info thanx again |
Reply
Danny
Oct 2 2006, 12:00 AM
QUOTE(Albus Dumbledore @ Oct 1 2006, 07:31 AM)  well, i really think that that the yourhtmlsource.com is the best link that anyone has provided in this post so far  i see the most informationa nd from what ive read so far its the easiest to understand even though i know most of what their saying. lol thank you all for your input on HTML sites, and although i am well of in HTML i am still going to go through them all except w2 schools because they dont explain stuff very well. and read all of the info  thanx again Um its w3schools? and they even have examples and not just html but more languages 
Reply
biscuitrat
Oct 2 2006, 04:18 AM
http://www.w3schools.org is awesome. So is http://www.lissaexplains.com. Those help for the short term, but I learned the most about webdesign from reading source code and understanding why this tag makes this happen, etc. Everything I do on the computer nowadays is part of a learning experience for me. From about 4th or 5th grade to 11th now...that's 6 years? I read a book and used it for maybe 2 max. I guess it also helps that my parents have been using computers since their inception (my dad fondly remembers mainframes). So yeah, whenever you go to a website you like, no one can stop you from looking at their source code - however, don't TAKE IT unless you have explicit permission, and you probably shouldn't do that either - you can learn a lot more from experience, which anyone can say. If you're going to buy a book, which I would say no to, make sure it it's PUBLISHED RECENTLY so you can make use of XHTML, CSS and other recently revised dealies. I made the mistake of trying to use a 2000 book a few years ago, and everything I made felt outdated.
Reply
Albus Dumbledore
Oct 14 2006, 07:10 PM
@danny, lol it wqas a typo.... i dont need examples, i just want to learn about it  ive looked at peoples source codes constantly and learned quite a few things from that as well. lissaexplains.com is a bit of a slow site for me i duno why but it is, i will check it oput though thanx
Reply
Albus Dumbledore
Oct 28 2006, 08:59 AM
ok, call me a noob if you want i dont really care. Ok, so right now i am going over somthing i never taught myself and i have a question, and yes it is a noob question. this is real basic too. Say i have a table (yes i do know they will automaticly expand to all of the content that i have in it.) HTML <table> <tr> <td> </td> </tr> </table> and if i were to want to make the column that content is in bigger.... i would make it like this instead... HTML <table> <tr> <td width="100"> </td> </tr> </table> and if i wanted to make a whole row bigger i would do this, or is this a no? i think this one here is a no.... because if i want to make the row bigger i just make the table bigger. HTML <table> <tr width="100"> <td> </td> </tr> </table> OR if i wanted to make the whole table bigger how would i do it? HTML <table width="750" height="1000"> <tr> <td> </td> </tr> </table> ??
Reply
jlhaslip
Oct 28 2006, 09:49 AM
"100" what? choices would include pixels (px), em's, en's, axe Handles? What?
Reply
Saint_Michael
Oct 28 2006, 10:27 AM
What albus is looking for is 100% in some of it the rest is in pixels like so HTML <table> <tr> <td> </td> </tr> </table> HTML <table> <tr> <td width="100%"> </td> </tr> </table> HTML <table> <tr width="100%"> <td> </td> </tr> </table> HTML <table width="750px" height="1000px"> <tr> <td> </td> </tr> </table> HTML <table> <tr> <td> </td> </tr> </table> But the set up your trying to do is similar to this tutorial http://zymic.com/view_tutorial.php?id=118, Although you don't need photoshop to do this the concept is just the same. Best way I learn is look at other websites and look at the code, I don't do direct copies of it but I take patches here and there. Now to help boost your css skills I recommend this site http://www.alvit.de/handbook/ for it is loaded with hundreds of css sites of different aspects. Also if you want to get down and dirty and slowly learn how to to build wewbsites http://www.oswd.org/ go here and check out all the templates they have. Who knows you could patch different templates and get a killer design. I don't put to much effort in books (to much reading and remembering) but most people seem to learn quicker with it, how I don't know but they do. Also the next question you want to answer is do you want your site to be fluid (meaning all resolutions and browsers accept it) or fixed (absolute positions). Although most people want to go with the fluid design, it takes time and a lot of coffee, because fluid design is the most difficult to work with. Due to the fact that you have to code it to at least 3 browsers (IE,FF, Opera) and about 6 resolutions (800x600, 1024X768, 1280x1024m 1600x1200) with some of those resolutions are gear towards wide screen computers. With Fix design, it takes sometimes but with this though you have to have at least 3 different css scripts running 1 for each browser. Due to the fact that each browser slightly changes the look of the website. All it takes is time and patience to code a website properly but to do it well you have to remember a lot of coding, something I am not gifted at. But of course if you bookmark a few million sites that help you learn that go ahead and do it. OR if you want to take a template and gut it out and recode from there, not a problem with that either. This is just some in sight fro ma person who been doing it on and off going on 10 years now. Hopefully some of the info I have provided helps you out a bit.
Reply
hype
Oct 28 2006, 11:57 AM
Its better to declare the width at the <table> tags as if you declare it at the since if you declare it at the <tr> or <td> tags it will only expand to the table width only... And after you have finish with your html code be sure to validate it at any html validator to ensure that you have gotten them right... One validator is W3Schools...
Reply
Albus Dumbledore
Oct 31 2006, 06:46 AM
@ SM, i was actually talking about PX  but thanks for clarifying that for me, i have spent the weekend going over tables and i think I've got them down good, i do want to get them down better than what i do now, but all it will take is paitence and im working on making that bigger:D SO for now ive made flash cards of all the Table attributes i have learned so far and im studying them  imagine that! umm the rest of this week i'll just study the cards in class, and then start reviewing over other HTML things... like next i am going to go through the form.. *easy, but i just want to make sure* if i have nay more questions i'll post them here  next comes PHP and mySql and i have a friend who is going to help me with that.
Reply
Albus Dumbledore
Nov 7 2006, 07:14 AM
Sorry to double post, but i would like someone to see this post. I have really gone over tables in the past week so i am bored now and doing it. SO, i am going over the cellspacing and cellpading and i just have a quickl question. Which parts of the tables can you put these in? Are they only wanted in the <table> section, or can they be put in the <td> section?
Reply
Recent Queries:--
headerbar html w3schools - 473.48 hr back. (1)
Similar Topics
Keywords : wanting, touch, learn, html
- Some Questions On Html
(6)
Help Making A Web Adress Bar Using Html/js
(9) Hey I need to make an adress bar basically you imput into the field press enter and your away but it
cant use php or any code that needs to be installed, its all part of a workaround for my school
interenet!....
Html Ascii Codes - A Complete List
downloadable php file (3) I was often frustrated at how, despite there being thousands of ASCII "special characters" such as
&8659; , websites that claimed to list them all only listed the first 256. To combat this issue,
I have created a table which lists the first 10,001 - from � to &10000; I am sure
there are many more but it is simply not feasible to create a table with many more rows as viewing
it would put terrific strain on the browser.! You can download the file in two forms. One uses
PHP to dynamically create the table (1KB), the other has it ready-made in pure HT....
Html Div Help [resolved]
help with the divs in ipb (1) hey guys, as you may know, i have ipb 2.3.4 set up on my site. i am currently using the centura
skin and like it a lot. i have customised the header bar in terms of the logo, however also want a
slab of text linking to the forums home at the top of the banner. i have so far managed to achieve
this to work in firefox (see attached screenshot), however it just screws up in ie, opera and safari
(i think). the link is here here is the code, both html and css, of the ipb header, and i have
placed between stars the parts i have edited: CODE the css (only the ed....
Best Way To Protect Html Form Fields
Looking for suggestions on how to protect form fields during user inpu (3) My working example is here http://sonesay.trap17.com/application.php The form submits to itself
and stores what ever the user inputs into session variables. Thats all fine and I have validation
checks for it, I wanted to add more and I remember comming across a site where they would lock from
fields to prevent any changes if the information was already supplied and validated. I'm looking
to build something similar but cant seem to figure out how to get that same effect at this time.
Heres my program logic so far application.php includes('application_content.....
Html Application Form
(6) does anyone know how to make a form/application that when you submit the form with the submit but it
sends it in a email to you email address if anyone on here knows please please let me know thanks, i
want this so i can have members apply for a team on my football site and there information will come
back to me and i can accept or reject them for that job....
Login In Using Html
(12) I have looked around and I can't find any code to help me out. I want to make it so you can log
in to my site to get member featues. Could some one please help me....
Wanna Learn Html From Scratch
downloade an online tutorial,formatted my c: lost it forever,and FORGO (5) id prefer something i can download .....coz my internet connection is highly intermittant Moved
from the Java section to the HTML section. ....
Help With Css/html Layout
Horizontal List Problems (5) I can't figure out why this horizontal list isnt working. Underneath my banner is supposed to
be a green gradient bar with a list of links in the center of the page. The links are all the way
to the left and are really small. The banner is also overlapping the list for some reason. This is
my current layout(don't worry, I'm not trying to advertise).
http://www.stormgaming.net/stormcreations/ This is my CSS file
http://www.stormgaming.net/stormcreations/storm.css Thanks in advance for any help.....
Html Help
(6) ok so i need help again i was wondering how i can make a navigation bar that looks like this
Free Website Templates <!-- Start of Page Menu -->
Information Slide Show Pictures title="Time Line"> Time
Line <!-- End of Page Menu --> Im having a problem putting
the names of things that i want to go in those four boxes i tried to put in names but it didnt show
up so i was wondering if anyone could give me some help....
Some More Help With Html
(2) Ok so yet again i need some help i have this so far: CODE <html> <head>
</head> <BODY BGCOLOR="black" TEXT="white" LINK=#XXXXXX
VLINK=#XXXXXX> <body> <center><h1> Pearl
Harbor</h1></center> <hr> <p> <a
href="http://photobucket.com" target="_blank"><img
src="http://i173.photobucket.com/albums/w59/tuhyd/pearlharbor.jpg" border="0"
align=right alt="USS Arizona "></a></right> <a ....
Ok Background Help Please
html (4) OK so i've given up on the paint for background now how would i get it to look like this
http://img.photobucket.com/albums/v614/Dj1.../background.jpg without using paint and without it
coming out to look like this... http://img.photobucket.com/albums/v614/Dj169211/Damn.jpg like,
with just html code, not trying to use paint and do the BS any ideas?....
Help With Html
(11) Ok so i just started learn html about a couple of weeks ago and i make a background image using this
code: CODE <style type="text/css"> body {
background-image:url("http://img.photobucket.com/albums/w59/tuhyd/backgrounds.jpg
4;); background-repeat: no-repeat}</style> and i am having trouble putting my
text on the top in the center becasue my links are on the left every time i try and move the text up
it moves the links down and separates them and i don't know what to do. added code tags.
please use appropri....
How To Display Php Code [resolved]
Html Help With Php Codebox (8) I'm trying to make codebox for my guestbook so that users can post PHP code inside.. I tried
many versions but none of them works If i use , or i can display HTML code, but when i try to
write PHP code it executes it does not display.. There is a way to make swap for You have codebox
in forum to display php how can i make that?! thanks....
Html Query
HTML Query (2) OK, so I want to know if it's possible to have my links as a seperate file and simply reference
that file in the rest of my site's pages so that if I change the links, I don't have to go
and edit every single page of my site. Does anyone know how to do this?....
Having Html Troubles......
Please help! (1) I'm having troubles with the background colours on the HTML pages on my site
keri-j.trap17.com Basically, the colors are hex codes and i'm no HTML n00b, god no! But, I
just can't figure this one out! I have the background colour in the body tag (duh) " " on
all my pages but on some of them the background is white. This might be to do with some javascript i
have recently edited in each page or certain errors but whatever it is i can't figure it
out! This is my homepage with the correct background color This is my poetry page with the
fau....
Error In Css (or Html)
(5) Well i am currently working on a project, and for this i need to fix this little error: Code is:
CODE $this->frm .= "<style type=\"text/css\">
<!-- .style1 {color: #000000}
--> </style>{$this->top}
<from action=\"$PHP_SELF\"
method=\"post\" name=\"\">
<table width=\"800....
Have You Used This Html Code?
very useful (9) how do you do if you want to put a video or audio file on you page...maybe you will use CODE
<object><param name=url value="url"></object>/*simple format*/
CODE <div><embed src="url"></embed></div> /*simple
format*/ there is a very familiar code for carring out the video show : CODE <img
dynsrc="http://kenvi9999.googlepages.com/ff7.wmv" border=1>/*an example:FF7*/
have you used this html code...I just knew a tag can achieve video play that is really co....
Creating Link In Html - Help Me With This!
(5) edit: Neeeaavverrrminddd..... I was a total noob at php when i posted this and I needed help doing
something with bbcode in php and didn't really know what I was saying.. /blush.gif"
style="vertical-align:middle" emoid=":blush:" border="0" alt="blush.gif" /> Anyway topic
resolved.......
Html Question Concerning Pre Tag And Code Tag
(8) My question is, why would anyone use the CODE tag when you can use the PRE tag? 1. The PRE tag
recognises white space, the CODE tag does not. 2. The CODE tag requires that you escape some
chars, the PRE tag does not. I cannot see anything that the CODE tag achieves that is special apart
from sounding as though it is perfect for displaying code which IMO it is not. Thanks. ....
Url Redirection = Javascript+html
Redirect using scripts! (4) In javascript Browser redirection can be done in 3 ways: 1) Alert Redirect: CODE
<html> <script> alert("This page has been moved to a new location...
click OK to be redirected."); location = "http://www.your-website.com";
</script> </html> 2) Confirm and Redirect: CODE <html>
<script> if(confirm("This page has been moved to a new location... would you
like to be redirected")) { location = "http://www.your-website.com";
}....
Problem With 'target' In Html
(2) Hi, I have this menu on my site which is build in a table. when pointing over a cel with mouse, the
background of the cell changes in white and produce a special code: CODE <td
align="center" bgcolor="#D6C2B4" class="bodystyle" style="font: 9px
Verdana" onClick="location.href='about.htm'"
onMouseOver="this.style.background ='#FFFFFF'"
onMouseOut="this.style.background='#D6C2B4'">ABOUT</td>
The normal linkcode is replaced by , onClick="location.href....
Centering Page Of Html At Various Display Widths
Viewing Screen Shots No Matter Resolution (14) I am running into a HUGE problem creating a website. When viewing the site on 800x600 it views in
the center of the page. When viewing the site on 1024x768 it views on the left side of the page. How
do I make the page always appear in the middle? I have seen many sites set up that will adjust
accordingly, but I cannot figure it out. If you want to view my source you can do so by going to the
website: www.faithcity.org/test.html. Moving to the html Topic ....
Html And Javascript
Not php as first indicated... (12) Edit your ScrollBar colors Change "Your color", to color code, that u need. CODE <STYLE
type="text/css"> <!-- BODY { scrollbar-face-color: Your color;
scrollbar-highlight-color: Your color; scrollbar-3dlight-color: Your color;
scrollbar-darkshadow-color: Your color; scrollbar-shadow-color: Your color;
scrollbar-arrow-color: Your color; scrollbar-track-color: Your color; } -->
</STYLE> Insert Date Place this code between , tags CODE <script
language=Javascript> <!-- v....
Do You Know Html?
Just Wondering, most of you would know. (65) Well I was just wondering, i know this polol might sound stupid, as this is a hosting site forum and
the chances are you do know HTML, but the other day i met 2 people who didt have a clue what HTML
was, and was just at the forum because they found this forum active. And also do you know any other
programming languages, just wondering. I myself know HTML, C++ kinda, and learing PHP. Talking about
Languages I know Tamil, English, Lote /tongue.gif' border='0' style='vertical-align:middle'
alt='tongue.gif' /> .....
A Question About Html Iframes
Need help in <iframe> (7) We have an upcoming project in our class...I've a cool idea of lay out but i hav a problem.
I'm using a lot of images. I need to embed my contents in those images (texts and graphics)
using table cells... My friend told that there is a so called tag to solve it but he doesn't
know how.... Can you please send me some hot info about parameter and hows' of iframes? Samples
would be great. Tnx... Use a more descriptive title next time. ....
Html Editor
non WYSIWYG (19) What editor can I download and use that isn't a WYSIWYG(what-you-see-is-what-you-get) and is
free. Currently I use NotePad but I want something better.....
Html Cool Codes?
(6) hey guys..whats up..well i ws just wondering if you guys have any cool codes for myspace or
something..you know to design a page using html/css codes...see i tried googling around but all the
sites had the same thing..they dont have a unique one...i want like games in my page...like my
friend he had like tetris in his page..and i want a game// or anything like that to make my page
cool /smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' />
anybody????plz...PEAcE!....
Html And Xhtml
serving the right kind (11) Right now I have a site, which I've made XHTML 1.0 Strict. I am sending it as
application/xhtml+xml to browsers that say they can handle it, and as text/html to all other
browsers. Anyway, I started thinking that I'd much rather send proper HTML 4.01 to browsers that
don't understand XHTML instead of XHTML pretending to be HTML 4.01. It's not really a
problem with IE, because it is made to handle badly written sites, but who knows, some browser that
can handle HTML, but not XHTML, may be (correctly) parsing CODE <p> Hello <br />
World....
where did you learn html from?
(89) HI, i am intresting in knowing where you began learning html of what inspired you to start learning
html. which programs did you use or which progs dyu use?....
Looking for wanting, touch, learn, html
|
*RANDOM STUFF*
*SIMILAR VIDEOS*
Searching Video's for wanting, touch, learn, html
*MORE FROM TRAP17.COM*
|
advertisement
|
|