You are viewing our Forum Archives. To view or take place in current topics click here.
#11. Posted:
Z61
  • TTG Fanatic
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
It seems that this is the same "basic" coding in the OP that has been posted many times.

and that is still not the most recent version of html, that is 4 not 5.
#12. Posted:
Calvee
  • TTG Senior
Status: Offline
Joined: Jun 13, 201112Year Member
Posts: 1,360
Reputation Power: 57
Status: Offline
Joined: Jun 13, 201112Year Member
Posts: 1,360
Reputation Power: 57
Well it may of been posted "many" times before, but I posted it also.

Also that is HTML5, you clearly don't understand programming, so please stop commenting as your wasting your time and my time.

If you want to produce a better tutorial, go ahead
Calvee.
#13. Posted:
5FDP_Jekyll
  • Supporter
Status: Offline
Joined: May 27, 201112Year Member
Posts: 2,048
Reputation Power: 100
Status: Offline
Joined: May 27, 201112Year Member
Posts: 2,048
Reputation Power: 100
xCalvy wrote
Well it may of been posted "many" times before, but I posted it also.

Also that is HTML5, you clearly don't understand programming, so please stop commenting as your wasting your time and my time.

If you want to produce a better tutorial, go ahead
Calvee.
not to flame but you CLEARLY don't understand html as in Z61 is correct that code is html 4 also you want proof [ Register or Signin to view external links. ]
#14. Posted:
Extazc
  • TTG Senior
Status: Offline
Joined: Aug 17, 201112Year Member
Posts: 1,444
Reputation Power: 75
Status: Offline
Joined: Aug 17, 201112Year Member
Posts: 1,444
Reputation Power: 75
Nice one bro ty for that i wanted to get into HTML
#15. Posted:
Calvee
  • TTG Senior
Status: Offline
Joined: Jun 13, 201112Year Member
Posts: 1,360
Reputation Power: 57
Status: Offline
Joined: Jun 13, 201112Year Member
Posts: 1,360
Reputation Power: 57
D34th_Maker wrote
xCalvy wrote
Well it may of been posted "many" times before, but I posted it also.

Also that is HTML5, you clearly don't understand programming, so please stop commenting as your wasting your time and my time.

If you want to produce a better tutorial, go ahead
Calvee.
not to flame but you CLEARLY don't understand html as in Z61 is correct that code is html 4 also you want proof [ Register or Signin to view external links. ]

As in, clearly I know what HTML is?
Clearly this is the utter basics of HTML this stuff isn't hard at-all.
GTFO.
Calvee.
#16. Posted:
speed
  • Winter 2020
Status: Offline
Joined: Jun 11, 200914Year Member
Posts: 9,897
Reputation Power: 3160
Motto: "I'l no I grew up to fast speed I no u will be little famous" - Famous_Energy
Motto: "I'l no I grew up to fast speed I no u will be little famous" - Famous_Energy
Status: Offline
Joined: Jun 11, 200914Year Member
Posts: 9,897
Reputation Power: 3160
Motto: "I'l no I grew up to fast speed I no u will be little famous" - Famous_Energy
xCalvy wrote

I know how to program. I have been programming for about 3 years. I know a lot more about programming then most of the members on TTG, and probably more then you.
This "version" as you claim will run through any web-browser. You clearly have no understanding of how the <html> tags work. *sigh* and I didn't "copy & paste" anything, this is all entirely mine.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>HBS &bull; Home</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<link href="style.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
<div id="wrapper">
   <div id="logo">
      <p></p>
      <h3>Hammond Building Services.</h3>
   </div>
   <hr />
   <!-- end #logo -->

That is the programming language I use for my websites but that isn't "basic" and people would not understand, so it's best to learn the basics before going into advanced stuff, plus that uses "scripting" which if you don't know is this:
body {
   margin: 0;
   padding: 0;
   background: #fff url(images/img01.jpg) repeat-x left top;
   font-family: Arial, Helvetica, sans-serif;
   font-size: 12px;
   color: #000;
}

h1, h2, h3 {
   margin: 0;
   text-transform: uppercase;
   font-family: Arial, Helvetica, sans-serif;
   font-weight: normal;
   color: #000000;
}

h1 { font-size: 44px; }

h2 { font-size: 18px; }

h3 { }

p, ul, ol {
   margin-top: 0;
   line-height: 100%;
   text-align: justify;
}

ul, ol { }

blockquote { }

a { color: #0564fd; }

a:hover { text-decoration: none; }


All of the above code snippets are from my website that I am curerntly making for my Buisness. So don't claim I am copying and pasting anything, as I don't.


Calvee.


I really hope you're kidding me.

First off, none of what you just pasted is "scripting", nor is it "advanced".

Your code looks like shit. You have multiple broken and useless tags, half of your CSS rules have no content, and quite honestly, the little bit you do have looks stolen.

Hop off your high horse, because you're not as good as you seem to think you are.
#17. Posted:
Extazc
  • TTG Senior
Status: Offline
Joined: Aug 17, 201112Year Member
Posts: 1,444
Reputation Power: 75
Status: Offline
Joined: Aug 17, 201112Year Member
Posts: 1,444
Reputation Power: 75
SPEED wrote
xCalvy wrote

I know how to program. I have been programming for about 3 years. I know a lot more about programming then most of the members on TTG, and probably more then you.
This "version" as you claim will run through any web-browser. You clearly have no understanding of how the <html> tags work. *sigh* and I didn't "copy & paste" anything, this is all entirely mine.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>HBS &bull; Home</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<link href="style.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
<div id="wrapper">
   <div id="logo">
      <p></p>
      <h3>Hammond Building Services.</h3>
   </div>
   <hr />
   <!-- end #logo -->

That is the programming language I use for my websites but that isn't "basic" and people would not understand, so it's best to learn the basics before going into advanced stuff, plus that uses "scripting" which if you don't know is this:
body {
   margin: 0;
   padding: 0;
   background: #fff url(images/img01.jpg) repeat-x left top;
   font-family: Arial, Helvetica, sans-serif;
   font-size: 12px;
   color: #000;
}

h1, h2, h3 {
   margin: 0;
   text-transform: uppercase;
   font-family: Arial, Helvetica, sans-serif;
   font-weight: normal;
   color: #000000;
}

h1 { font-size: 44px; }

h2 { font-size: 18px; }

h3 { }

p, ul, ol {
   margin-top: 0;
   line-height: 100%;
   text-align: justify;
}

ul, ol { }

blockquote { }

a { color: #0564fd; }

a:hover { text-decoration: none; }


All of the above code snippets are from my website that I am curerntly making for my Buisness. So don't claim I am copying and pasting anything, as I don't.


Calvee.


I really hope you're kidding me.

First off, none of what you just pasted is "scripting", nor is it "advanced".

Your code looks like ****. You have multiple broken and useless tags, half of your CSS rules have no content, and quite honestly, the little bit you do have looks stolen.

Hop off your high horse, because you're not as good as you seem to think you are.


Thanks for telling me about that i was about to start learning that
#18. Posted:
ripgut
  • TTG Contender
Status: Offline
Joined: Dec 23, 200914Year Member
Posts: 3,046
Reputation Power: 146
Status: Offline
Joined: Dec 23, 200914Year Member
Posts: 3,046
Reputation Power: 146
I still use a good amount of the tags he has listed in his original post.

I construct purely out of HTML and CSS, with a bit of Java here and there.

Would somebody mind explaining to me what exactly you guys mean by "broken," when referring to his code?

I mean, I see several things such as forms that could be done in better, cleaner, more effective ways.. but I don't think that constitutes his code as "broken."

Browsers will read most of what I have seen that he posted. Either that or mysteriously, my browser reads everything I do perfectly.
#19. Posted:
Darkz0r
  • TTG Senior
Status: Offline
Joined: May 28, 200914Year Member
Posts: 1,172
Reputation Power: 79
Status: Offline
Joined: May 28, 200914Year Member
Posts: 1,172
Reputation Power: 79
Great tutorial.




Z61 - Its the basics duh.
#20. Posted:
TehJtagsJr
  • TTG Senior
Status: Offline
Joined: May 01, 201113Year Member
Posts: 1,220
Reputation Power: 66
Status: Offline
Joined: May 01, 201113Year Member
Posts: 1,220
Reputation Power: 66
This is a GREAT tutorial as it has helped me learn a few new things (in the harder section)

Please update with how to make:

Scrolling Text


I hope you update with other stuff too like backgrounds etc ;)

-Hyper
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.