HTML Tutorial #1 - Byktos

Status
Not open for further replies.

Lounge

#dat habbo nigga
Apr 12, 2012
304
27
Hello Guuys and Giirls.

I will tell you a little about things.
Before we get started, it may be somewhat helpful to know a little about HTML

doctypes means what type of HTML browser to read ex. HTML4.1.

I have put some Doctypes out who can use :)

HTML 4.1 = <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
" ">

XHTML = <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" " ">

HTML5 = <!DOCTYPE HTML> [ Thats one i use in my Tutorial.


To start to write code as directed:

HTML:
To start to write code as directed:
 
 
<!DOCTYPE HTML>
<html>
<head>
<title>DevBest [ Organner Tutorials] </title>
</head>
<body>

It was a basic setup of the html file, the next you can do is a text,

Texts are easy, that's what you should be when you are working on project HTML.

Typical HTML coders think they can create body text, and TABLES, and put into pictures Bigger they are the best, but it takes time and desire.

Now you can start up your own html page.

First take your setup and press enter 2 times.

So you write:

HTML:
<p> Hello This is my first text at my HTML site</p> </body> </html>

Now you have created a very simple text!
Soon an html tutorial 2!


p = paragraph

That means a completely normal text to your page, which is very useful, you can also make some lines between by doing so managed:
HTML:
<p> Hello this is my text i want a line<br> HERE</p>

Bye DevBesters
 

Khaye

New Member
May 3, 2012
13
0
This is Good Tutorial. ;). Keep up the good work with the next Chapters. ;).
 

Khaye

New Member
May 3, 2012
13
0
Make it 20 ;). More Advance ;).I want to learn more even i know the Basics ;o.
 

Lounge

#dat habbo nigga
Apr 12, 2012
304
27
You may be happy to come up with my developer team - Byktos :)
 

Sledmore

Chaturbate Livestreamer
Staff member
FindRetros Moderator
Jul 24, 2010
5,195
3,903
You hardly explain each element lol, don't see someone learning much from this other than copying and pasting to their actual code.

How will this help, you could at-least explain what the paragraph tags actually are or what they do and same with the other tags.
 

Lounge

#dat habbo nigga
Apr 12, 2012
304
27
Make it 20 ;). More Advance ;).I want to learn more even i know the Basics ;o.

I make some simple for beginners who want more into the HTML world, and become HTML developer.'

Then some more Advanced.
 

Jake7282

Believe you can and you're halfway there.
Jan 2, 2012
238
12
<p> means paragraph

<tittle> is the tittle

<br> is break

<h> is a header

<html> is the type of code

<body> is the body of the code

<center> is to make text be in center

<b> <i> will make text be bold or italics and so on.
 

Lounge

#dat habbo nigga
Apr 12, 2012
304
27
You hardly explain each element lol, don't see someone learning much from this other than copying and pasting to their actual code.

How will this help, you could at-least explain what the paragraph tags actually are or what they do and same with the other tags.

So it solved, sorry, I just thought they would understand it was a text :)
 

Legion

Gaming Lord
Staff member
Nov 23, 2011
1,801
669
a Simple and very basic Layout
HTML:
<html>
<head>
<title>Hey</title>
<body>
<p>Hey, some text </p>
</body>
</html>
 

Heaplink

Developer & Designer
Nov 9, 2011
510
173
You forgot to explain that the doctype you are using is HTML5. Maybe you should post in other doctypes for HTML 4.1 and XHTML.
 

Lounge

#dat habbo nigga
Apr 12, 2012
304
27
I may as well change it?

So they can understand it to be different Doctypes to XHTML and HTML 4.1 and HTML 5?
 

Heaplink

Developer & Designer
Nov 9, 2011
510
173
Yes, because it's not obsolete for different browsers. This is telling how the browser should read and understand the document - it's important to note.
 

Heaplink

Developer & Designer
Nov 9, 2011
510
173
He means you made a mistake here:
Code:
<p> Hello This is my first text at my HTML site</p> </html> </body>
It should be
Code:
<p> Hello This is my first text at my HTML site</p></body> </html>
 

Markshall

Русский Стандарт
Contributor
Dec 18, 2010
2,637
2,389
One thing I was obsessed with when I was learning HTML was the marquee tag:

HTML:
<marquee>This is some marquee text... weeeeeee!</marquee>
 
Status
Not open for further replies.

Users who are viewing this thread

Top