My beginner programming thread

Admiral Snackbar

Well-Known Member
Joined
Jan 12, 2016
Messages
183
Dunno about tbody & thead (not a front end dev) but seems to me like you are not closing tags hence your interpreter (browser) is left to guess I suspect.

Try closing tags correctly(td tags) and see if it corrects itself.

http://www.w3schools.com/html/html_tables.asp

Thanks for the link and the answer krycor :)

Yeah there's a lot of tags for the tables so I'll take some getting used to.


Happy to be learning though!

Edit: that link is boss! I got borders for my tables now!

Code:
<table border="5" style="width: 50%">
 
Last edited:

semaphore

Honorary Master
Joined
Nov 13, 2007
Messages
15,206
Thanks for the link and the answer krycor :)

Yeah there's a lot of tags for the tables so I'll take some getting used to.


Happy to be learning though!

Edit: that link is boss! I got borders for my tables now!

Code:
<table border="5" style="width: 50%">

Next you can do some marquees and web hit counters, those are next level yoh.
 

Hamster

Resident Rodent
Joined
Aug 22, 2006
Messages
42,928
Next you can do some marquees and web hit counters, those are next level yoh.

And don't forget these puppies: http://www.animatedgif.net/arrowpointers/arrows.shtml

arrow1rightred_e0.gif
Chef's Pick of the Day
 

rward

Senior Member
Joined
Oct 26, 2007
Messages
865
Thanks for the link and the answer krycor :)

Yeah there's a lot of tags for the tables so I'll take some getting used to.


Happy to be learning though!

Edit: that link is boss! I got borders for my tables now!

Code:
<table border="5" style="width: 50%">

Check out stylesheets next.
Using them you don't put your styles in-line and make it possible to share styles across multiple elements.
(Unless you're coding up emails, then you want to keep it all in-line).
 

shooter69

Expert Member
Joined
Jun 4, 2012
Messages
3,104
Code:
        <style>
        h2 {
            color: red;
        }
        th {
            color: red;
        }
        td {
            background-color: rgb(210, 216, 217);
        }
        #contents {
            color: rgb(133, 36, 99);
        }

I know this is not part of the question but I would probably do most of the CSS within it's own stylesheet.css file and just reference it in your html. Makes for some cleaner and easier to read code.

ooops. I see Rward allready pointed this out.
 
Last edited:

Admiral Snackbar

Well-Known Member
Joined
Jan 12, 2016
Messages
183
I just spent the last 20 minutes inspecting websites and changing their CSS to make them look ridiculous lol.

Good fun. Will be nice to show my friends who don't know anything about IT.

11w7cye.png
 
Last edited:

rward

Senior Member
Joined
Oct 26, 2007
Messages
865
Check the responsiveness on it though ..
(responsiveness - responsive web development)
 

Admiral Snackbar

Well-Known Member
Joined
Jan 12, 2016
Messages
183
Dont do it to yourself.
Do I need a teacher? You mean like at a college?

I don't understand, is this a bad to learn?



I'm 96% done with the HTML/CSS course on Khan Academy and 50% done with the Javascript one. I'm just trying to branch out as much as possible and get a feel for everything I can.

Next up is Python and SQL, but I've been told VB is good too.
 
Last edited:

Beachless

Executive Member
Joined
Oct 6, 2010
Messages
6,003
Do I need a teacher? You mean like at a college?


I don't understand, is this a bad to learn?



I'm 96% done with the HTML/CSS course on Khan Academy and 50% done with the Javascript one. I'm just trying to branch out as much as possible and get a feel for everything I can.

Next up is Python and SQL, but I've been told VB is good too.

Much rather do C#, Python, Ruby to expand your languages. You will be hard pressed to find anyone who says VB is the future and in my opinion it will be a deterrent to your programming future not a benefit. It gets a lot of hate(its not really that bad) but I do think for new learners its totally wrong.
 

Admiral Snackbar

Well-Known Member
Joined
Jan 12, 2016
Messages
183
Yeah, don't...

Learn C# or Java first, as Admiral said
But I am Admiral :D
Thank you, I will steer clear of VB.
Much rather do C#, Python, Ruby to expand your languages. You will be hard pressed to find anyone who says VB is the future and in my opinion it will be a deterrent to your programming future not a benefit. It gets a lot of hate(its not really that bad) but I do think for new learners its totally wrong.
Ahh I get it, okay so definitely a no go. Thanks Beachless. I appreciate the more experienced people helping me out here.
I think most would rather recommend C# or Java instead of VB.
Aight I got you! Thanks prOd.
 
Top