You are viewing our Forum Archives. To view or take place in current topics click here.
My First Ever Creation In HTML
Posted:

My First Ever Creation In HTMLPosted:

EricUS
  • TTG Senior
Status: Offline
Joined: Oct 08, 201112Year Member
Posts: 1,865
Reputation Power: 84
Status: Offline
Joined: Oct 08, 201112Year Member
Posts: 1,865
Reputation Power: 84
I just started learning last night and this is what i have so far

Code:
<html>
<Center>
<font color="Magenta">
<h1> HTML Test </h1>
</font>
<p>
<font size="5" face="arial" color="red">
By "Chomp"
</font>
</p>
<font size="5" face="arial" color="Green">
<code>This is my first HTML test.</code>
</font>
</p

<p>
<font size="2" face="arial" color="Blue">
</p>
</center>
<hr />


<b>First Day Learning </b>

<br>
<br>

<i> March 30, 2012.  Starting to learn HTML. </i>

<hr /hr>
</font>

</p>

<p>
<font color=Red>

What Is Your Gender?
</font>
<form>
<font color=Blue>
<input type="radio" name="gender" value="Female" /> Male<br />
</font>
<font color=Pink>
<input type="radio" name="gender" value="Male" /> Female
</form>
</font>


<form>
<input type="submit" value="Submit" />
</form>

<hr />
<font color=Red>
What Type Of Vehicle Do You Own?
</font>
<form>
<font color=Yellow>
<input type="checkbox" name="?" value="Truck" /> I have a Truck<br />
</font>
<font color=Magenta>
<input type="checkbox" name="?" value="Car" /> I have a Car <br />
</font>
<font color=Blue>
<input type="checkbox" name="?" value="SUV" /> I have a SUV <br />
</font>
<font color=Purple>
<input type="checkbox" name="?" value="Bus" /> I have a Bus <br />
</font>
<font color=DarkGreen>
<input type="checkbox" name="?" value="MotorCycle" /> I have a Motorcycle <br />
</font>
<font color=Orange>
<input type="checkbox" name="?" value="Other" /> Other <br />
</font>
</form>

<form>
<input type="submit" value="Submit" />
</form>
</p>
<hr />


Here is a site to look at my creation:

[ Register or Signin to view external links. ]

I learned from a really cool website, if you want to learn more about HTML or other programming languages [ Register or Signin to view external links. ]
#2. Posted:
Status: Offline
Joined: Feb 08, 201212Year Member
Posts: 697
Reputation Power: 29
Status: Offline
Joined: Feb 08, 201212Year Member
Posts: 697
Reputation Power: 29
First time nice HTML Codding there
#3. Posted:
Ex-Wife
  • Summer 2019
Status: Offline
Joined: Aug 24, 201112Year Member
Posts: 677
Reputation Power: 46
Status: Offline
Joined: Aug 24, 201112Year Member
Posts: 677
Reputation Power: 46
Pretty nice for your first time.
If you want to get better just do a'lot of research
#4. Posted:
Nic
  • Retired Staff
Status: Offline
Joined: Jun 08, 201013Year Member
Posts: 2,466
Reputation Power: 1070
Motto: I've been watching you all day.
Motto: I've been watching you all day.
Status: Offline
Joined: Jun 08, 201013Year Member
Posts: 2,466
Reputation Power: 1070
Motto: I've been watching you all day.
Nice, keep going. Messing around like this is the only way to get the hang of it.
Just a tip though; get rid of the <font> tag. It works but it's deprecated since HTML 4.01 (officially not even supported in HTML 5). Instead, try using CSS to style text in your document ;)
#5. Posted:
irJord
  • Resident Elite
Status: Offline
Joined: Jan 11, 201212Year Member
Posts: 228
Reputation Power: 12
Status: Offline
Joined: Jan 11, 201212Year Member
Posts: 228
Reputation Power: 12
I was going to say something similar to Nicasus, use CSS for aligning
text and images. Also use CSS to style font for default sizing and coloring.

Take a look at my tutorial on how to connect your HTML file to your CSS file.

Forums/t=3433389/connecting-html-...orial.html

Other than that, keep going. Learn new stuff and extend from it.

Learn these languages:

  • HTML
  • CSS
  • PHP
  • MYSQL


then create your own custom forum. That can be a goal for you.
#6. Posted:
z_quickscoper
  • TTG Addict
Status: Offline
Joined: Jan 22, 201113Year Member
Posts: 2,255
Reputation Power: 94
Status: Offline
Joined: Jan 22, 201113Year Member
Posts: 2,255
Reputation Power: 94
Very very nice for your first time bro.
#7. Posted:
Zenhance
  • TTG Addict
Status: Offline
Joined: Nov 14, 201112Year Member
Posts: 2,997
Reputation Power: 139
Status: Offline
Joined: Nov 14, 201112Year Member
Posts: 2,997
Reputation Power: 139
If you take a tech class in school you can learn way more!

Try these sites

[ Register or Signin to view external links. ]
#8. Posted:
RUSH0814
  • New Member
Status: Offline
Joined: Mar 31, 201212Year Member
Posts: 33
Reputation Power: 1
Status: Offline
Joined: Mar 31, 201212Year Member
Posts: 33
Reputation Power: 1
overall its good but your doing it in a funny way. try doing it in this fashion: <html><title>welcome</title><body>example</body></html>

instead of:
<html>
<title>
welcome
</title>
<body>
example
</body>
</html>

i know its neater. but trust me, when your websites start getting big its a hassle when you write it the way you do.
#9. Posted:
Nic
  • Retired Staff
Status: Offline
Joined: Jun 08, 201013Year Member
Posts: 2,466
Reputation Power: 1070
Motto: I've been watching you all day.
Motto: I've been watching you all day.
Status: Offline
Joined: Jun 08, 201013Year Member
Posts: 2,466
Reputation Power: 1070
Motto: I've been watching you all day.
RUSH0814 wrote overall its good but your doing it in a funny way. try doing it in this fashion: <html><title>welcome</title><body>example</body></html>

instead of:
<html>
<title>
welcome
</title>
<body>
example
</body>
</html>

i know its neater. but trust me, when your websites start getting big its a hassle when you write it the way you do.

Typing everything on one line isn't recommended at all, regardless of how big the code is. Indent is supported for a reason (tab button)
If everything is on one line it will be more of a hassle to implement or remove features that require a bit more work than adding/changing a simple line of code, not to mention it's even harder for others who you might be working with.

Take a look at some source codes such as this website (TTG), Xbox, deviantART, BBC, etc. Especially BBC is quite a lot of code (almost 1700 lines) in HTML and Javascript alone ;)
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.