You are viewing our Forum Archives. To view or take place in current topics click here.

Should this be a sticky

Yes
28.57% (2 votes)
Hmmm maybe
14.29% (1 vote)
No it didnt help at all
57.14% (4 votes)

Total Votes: 7

[TUT] Easy & Basic Html Code (index)
Posted:

[TUT] Easy & Basic Html Code (index)Posted:

Tilly
  • New Member
Status: Offline
Joined: Jun 03, 201212Year Member
Posts: 22
Reputation Power: 1
Status: Offline
Joined: Jun 03, 201212Year Member
Posts: 22
Reputation Power: 1
The start
Fist i would recomend downloading notepad++ just serch it in google

so after doing that make a new folder on you desktop or were you wont and call it website.
after you have done that you would wont to open notepad++ then this is the fun part.

When ever make a html webpage you must start with <html> examle at the bottom then on a new line you need to type [head] then on a new line agen you need to type [title] then a new line and type what ever you wont it to say in the tab bar e.g. welcome then a new line saying </head> to colse the head and next to that </title> to colse the title that is the typeing in the tab done.

So lets begin with the main text that you will see. so on a new line after /head and /title type <main> then a new line and what ever text you wont to show on you page e.g. hey welcome to my freshky coded webpage.
then on a new line </main>
if you wont coloed text you have to type on a new line after <main> <color text="Your color"> then after you have typed you text for you webpage you should type </main> and if you added color text </text> after it then on a new line after that </html> the go to save as select you file and save a index.html then open with you web browser Thanks guys ~Tiddles~ example at the bottom .

<html>
<head>
<title>
Welcome
</head></title>
<main>
<text color="red">
Hey guys welcome to my freshly made tut
</main></text>
</html>

Comment and rep if you wont
~Tiddles~
#2. Posted:
5FDP_Jekyll
  • 2 Million
Status: Offline
Joined: May 27, 201113Year Member
Posts: 2,048
Reputation Power: 100
Status: Offline
Joined: May 27, 201113Year Member
Posts: 2,048
Reputation Power: 100
Well, sorry to bust your bubbles but this will never be a sticky. For a few reasons.

  • Way to many misspelled and left out words.
  • Not organized at all really.
  • It's common knowledge for anyone who wants to work in the HTML/Web coding field.
  • Your code is not even 100% correct.
#3. 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
seems like a C&P and its not even current coding.
#4. Posted:
-CJHaCKerZz-
  • Resident Elite
Status: Offline
Joined: Nov 05, 201113Year Member
Posts: 232
Reputation Power: 11
Status: Offline
Joined: Nov 05, 201113Year Member
Posts: 232
Reputation Power: 11
You should of ended the title before the header.
Noob. lol
#5. Posted:
irSpeed
  • TTG Master
Status: Offline
Joined: Jun 27, 201014Year Member
Posts: 820
Reputation Power: 37
Status: Offline
Joined: Jun 27, 201014Year Member
Posts: 820
Reputation Power: 37
Why not use this?


<html>
<head>
<title>Welcome</title>
</head>
<body>
<font="tahoma" size="8" color="red">
Im using the font Tahoma Size 8 and the color RED!
</font>
</body>
</html>


It's easy.
You just google HTML Basics
You read it once make it once.
And it will stick in youre head.
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.