Samurai Legend Posted March 26, 2014 Posted March 26, 2014 (edited) I am soon going to be mastering HTML! I started today on Code Academy. I've learned a lot! Example - <!DOCTYPE html> <html> <head> <title>Samurai Assault</title> </head> <body style="background-color:grey"> <h3 style="font-family: Arial; color:red">List of things I hate!</h3> <ul style="background-color:red"> <li style="font-family:Impact; color:blue; font-size:10px">Liars</li> <li style="font-family:Impact; color:blue; font-size:10px">Black Mailers</li> <li style="font-family:Impact; color:blue; font-size:10px">Theifs</li> </ul> <p>Thats <strong>All</strong>. Come <em>back</em> later</p> </body> </html> Edited March 27, 2014 by Samurai Legend Quote
W3Theory || Peter Posted March 26, 2014 Posted March 26, 2014 As a tip, when learning, it will be nice to learn css as well, which has components to what you are doing already. I think it would be great practice to learn those two languages at the same time. Learn to create a file for just your css, so that the actual html file doesn't get bogged down with all the 'font-family'. By using CSS/Classes/Id, you will create a more efficient and organized file. IE, the style for the '<li> could have a class attached to it. Within your css file you can call it '.listing', which will contain all your 'styles'. Then in the html file, you will only have to write '<li class="listing">' and it will output the proper style for you. Now, my explanation is not the greatest, I don't lead people to believe I am a teacher, but hopefully you can grasp the idea and look into it. Definitely will help out in the long run. Plus, as a final note, I would not go around saying 'I have mastered ....', if you think you have mastered a certain language will you ever push to learn more of it? There are much much much more, even to HTML, than what meets the eye. Quote
lucky3809 Posted March 26, 2014 Posted March 26, 2014 I am soon going to be mastering HTML! I started today on Code Academy. I've learned a lot! Example - <!DOCTYPE html> <html> <head> <title>Samurai Assault</title> </head> <body style="background-color:grey"> <h3 style="font-family: Arial; color:red">List of things I hate!<h3> <ul style="background-color:red"> <li style="font-family:Impact; color:blue; font-size:10px">Liars</li> <li style="font-family:Impact; color:blue; font-size:10px">Black Mailers</li> <li style="font-family:Impact; color:blue; font-size:10px">Theifs</li> </ul> <p>Thats <strong>All</strong>. Come <em>back</em> later</p> </body> </html> Total fail!!! You did not close a tag,look over your html tags.. Quote
KyleMassacre Posted March 26, 2014 Posted March 26, 2014 Total fail!!! You did not close a tag,look over your html tags.. I wouldn't go off and say "Total Fail" lol I would say it's an honest mistake especially for non HTML savvy people like myself. I have also forgotten to close a tag properly myself. The effort was there he just forgot to add a "/" Quote
lucky3809 Posted March 27, 2014 Posted March 27, 2014 Well I am ocd when it comes to html lol... You are right though he did take the effort to learn it, not many could care for html :) Quote
SRB Posted March 27, 2014 Posted March 27, 2014 Total fail!!! You did not close a tag,look over your html tags.. I suppose you never made a mistake when you were learning? Come on now, don't be a dick... that's my job and I'm not resigning any time soon. Quote
Samurai Legend Posted March 27, 2014 Author Posted March 27, 2014 @Peter - Probably another 2 - 3 weeks, I will master HTML! After learning HTML I will move onto learning CSS. It's easy for me as I can remember a lot. And thanks :) @Lucky - Thanks for pointing the mistake out. Just give me about 2 - 3 weeks, I will learn! I am determined to learn :P @Kyle - Thanks bud :) @Guest - I like dicks... Quote
HazardBoy Posted March 31, 2014 Posted March 31, 2014 Best easy and fast way to learn is to hack other's code. Like a ninja! Take a sample see how it's made and break it apart, make something else. Use editor dedicated to web design, and you'll learn even faster. And the secret of how it's made is "F12". :) Start learning from the start with developer console by your side. Know that the skill and level of a programmer is not given by the language that he knows but by the framework that he masters! So your journey is just started. The path is long and well rewarded. :) Good luck, and have fun! Quote
Newbie Posted March 31, 2014 Posted March 31, 2014 i use Aptana Studio 3 its free and pretty nice editor also i have just found this site the other day and i found it pretty useful to me so might be to you http://learnlayout.com/ Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.