Newbs

Status
Not open for further replies.

GangnamStyle

HTML Advanced Coder
Jan 8, 2012
121
8
Hello, If your a newb at HTML Coding Keep Reading, if not don't bother!

Title code:
Code:
<title>(SITE NAME)</title>

Navigation Bar:
Code:
<li>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</li>

Copy Right:
Code:
&copy <b>Site Name</b>

Main Little Important codes:

Code:
<b>Hello</b>
<i>Hello</i>
<p>Hello</p>
<h1>Hello</h1>
<h2>Hello</h2>
<h3>Hello</h3>
<strong>Hello</strong>

Why at the end of a code we have a '/ ' sign?
It represents us closing the code
e.g i could be coding a quick notice: <b>Note:</b><strong>Site Closing

That will be wrong as there is No closing code
Correction:
<b>Note:</b><strong>Site Closing</strong>

Thanks for watching my quick Tutorial, If you'll fill you can improve and expand your coding, visit some tutorial sites like
 

Mastah

the funny thing is \r\n i did
Oct 25, 2010
739
41
The title isn't really making sense because this is suppose to be a tutorial not some public offending.

Though that clearly the tutorial is very good and it's very well explained. I prefer changing the title to something else because these sorts can lead to flaming parts and the part where people are feeling offended.
 

GangnamStyle

HTML Advanced Coder
Jan 8, 2012
121
8
True, The title code is mainly for the browser URL, But as I posting the h1 codes could be your main code with the <center> code
 

Mastah

the funny thing is \r\n i did
Oct 25, 2010
739
41
True, The title code is mainly for the browser URL, But as I posting the h1 codes could be your main code with the <center> code

Change the post title to something with Tutorial because these sorts can be offending and therefore you can hurt and get people to feel offended and then this thread would lead back to the whole part where people are flaming on each other.
 

Logic

Bobby Billionaire
Feb 8, 2012
748
207
Don't use <b>, use <strong>.

<s>Hi</s> - Strike through.
<br /> - Space to next line.
<br /><br /> - Blank space between both lines.
<marquee>Hey</marquee> - Scrolling text.
 

Markshall

Русский Стандарт
Contributor
Dec 18, 2010
2,637
2,389
You may notice some HTML tags such as <br /> that posted don't have an ending tag like </br>, this is because it is a self ending tag and it ends itself in the start tag.

This rule applies for other HTML tags like :
  • <input />
  • <hr />
  • <br /> (as mentioned in the posted)
  • <img />
  • <link />
  • <meta />
 
Status
Not open for further replies.

Users who are viewing this thread

Top