WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You

WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You


You are not connected. Please login or register

Go to page : 1, 2, 3, 4  Next

View previous topic View next topic Go down  Message [Page 1 of 4]

1Some questions regarding HTML Empty Some questions regarding HTML Thu Jun 10, 2010 8:10 pm

50Cent


Registered Member
Registered Member
I have a question why this element must be put at the front before we start coding a website. Is it the same element? What the use of this element? I start learning coding today.

Spoiler:

2Some questions regarding HTML Empty Re: Some questions regarding HTML Thu Jun 10, 2010 10:53 pm

latchy

latchy
Registered Member
Registered Member
That is a deceleration for W3C Wink

http://www.graphiccentral.org/

3Some questions regarding HTML Empty Re: Some questions regarding HTML Thu Jun 10, 2010 11:05 pm

Sanket

Sanket
Administrator
Administrator
http://www.webartzforum.com/html-hyper-text-markup-language-f5/what-is-doctype-t127.htm

http://www.webartzforum.com

4Some questions regarding HTML Empty Re: Some questions regarding HTML Fri Jun 11, 2010 2:46 pm

50Cent


Registered Member
Registered Member
Ok.. 1 more.

Why do we need to add this? This code is just to tell us what script language are we using isit?

Spoiler:

5Some questions regarding HTML Empty Re: Some questions regarding HTML Fri Jun 11, 2010 3:14 pm

Russel

Russel
Moderator
Moderator
Yes, it is Smile

It is called script tag.

The <script> tag is used to define a client-side script like javascript.

https://www.twitter.com/russeltubo

6Some questions regarding HTML Empty Re: Some questions regarding HTML Fri Jun 11, 2010 3:24 pm

50Cent


Registered Member
Registered Member
If i did not put the <script> tag does it affect the whole code?

7Some questions regarding HTML Empty Re: Some questions regarding HTML Fri Jun 11, 2010 3:30 pm

Russel

Russel
Moderator
Moderator
Definitely Yes.

Script tag holds the whole code, if you do not include that tag, you will all those codes included inside the <script> tag.

https://www.twitter.com/russeltubo

8Some questions regarding HTML Empty Re: Some questions regarding HTML Sat Jun 12, 2010 4:26 pm

50Cent


Registered Member
Registered Member
What can i code with HTML other than web design? May i know? Because i want to experience.

9Some questions regarding HTML Empty Re: Some questions regarding HTML Sat Jun 12, 2010 4:35 pm

Russel

Russel
Moderator
Moderator
If you want to learn all about HTML. Please start to learn the basic HTML

Proceed here

https://www.twitter.com/russeltubo

10Some questions regarding HTML Empty Re: Some questions regarding HTML Sat Jun 12, 2010 8:55 pm

50Cent


Registered Member
Registered Member
I know the basic. I just want to start coding something simple.

11Some questions regarding HTML Empty Re: Some questions regarding HTML Sun Jun 13, 2010 7:25 am

Russel

Russel
Moderator
Moderator
You can search it on google if you want to learn more about HTML. Or if you want help by us webartz, you can ask us questions specifically. Smile

https://www.twitter.com/russeltubo

12Some questions regarding HTML Empty Re: Some questions regarding HTML Sun Jun 13, 2010 7:38 am

iJerick

iJerick
Registered Member
Registered Member
Code simple?

What do you mean? You just want to create a simple webpage?

13Some questions regarding HTML Empty Re: Some questions regarding HTML Sun Jun 13, 2010 6:25 pm

50Cent


Registered Member
Registered Member
Just wanted to know, How can i code a very simple webpage with the use of HTML only..

14Some questions regarding HTML Empty Re: Some questions regarding HTML Sun Jun 13, 2010 10:58 pm

ankillien

ankillien
Administrator
Administrator
50Cent wrote:Just wanted to know, How can i code a very simple webpage with the use of HTML only..

You can build a Webpage using HTML tables. It won't require to use CSS.
Using tables you can create header, footer, columned layout etc.

15Some questions regarding HTML Empty Re: Some questions regarding HTML Mon Jun 14, 2010 12:33 am

50Cent


Registered Member
Registered Member
How do i post a .htm extension file on a forum?

What can i create using tables for header?

16Some questions regarding HTML Empty Re: Some questions regarding HTML Mon Jun 14, 2010 12:39 am

ankillien

ankillien
Administrator
Administrator
You can't post an HTML file. You cn create a new HTML page from Admin CP.

You can create the banner space/header for your page using HTML tables.

17Some questions regarding HTML Empty Re: Some questions regarding HTML Mon Jun 14, 2010 12:45 am

50Cent


Registered Member
Registered Member
How any examples?

EDIT: Here is an BETA webpage on my portfolio. I just code it. And i learn coding two days again. How does this look?

http://chattyden.darkbb.com/My-Online-Portfolio-h2.htm

18Some questions regarding HTML Empty Re: Some questions regarding HTML Mon Jun 14, 2010 12:50 am

ankillien

ankillien
Administrator
Administrator
Code:
<table border="1" cellpadding="5" cellspacing="5" width="100%">
<tbody><tr><td align="center" height="100px">SITE HEADER</td></tr>
<tr><td align="center" height="300px">SITE CONTENT</td></tr>
<tr><td align="center" height="50px">SITE FOOTER</td></tr>
</tbody></table>

Try above code in an HTML page.

19Some questions regarding HTML Empty Re: Some questions regarding HTML Mon Jun 14, 2010 12:53 am

50Cent


Registered Member
Registered Member
So i just need to insect my code in the site header etc?

EDIT: But mine also can rite?

20Some questions regarding HTML Empty Re: Some questions regarding HTML Mon Jun 14, 2010 9:26 am

ankillien

ankillien
Administrator
Administrator
Yes, you can insert the site header content there.

I am just showing you how a webpage can be made only out of HTML codes.

21Some questions regarding HTML Empty Re: Some questions regarding HTML Mon Jun 14, 2010 9:51 am

50Cent


Registered Member
Registered Member
May i also know what this <div> tag works for?

22Some questions regarding HTML Empty Re: Some questions regarding HTML Mon Jun 14, 2010 10:11 am

ankillien

ankillien
Administrator
Administrator
It creates a content box which can have any kind of content inside. It is a block level element.

23Some questions regarding HTML Empty Re: Some questions regarding HTML Mon Jun 14, 2010 10:27 am

50Cent


Registered Member
Registered Member
can you make me a example?

What is <meta> I know it is some data things. But used for what.?

24Some questions regarding HTML Empty Re: Some questions regarding HTML Mon Jun 14, 2010 1:55 pm

ankillien

ankillien
Administrator
Administrator
Here is a complete HTML Tag Reference with explanation and examples...
http://w3schools.com/tags/default.asp

25Some questions regarding HTML Empty Re: Some questions regarding HTML Mon Jun 14, 2010 3:28 pm

50Cent


Registered Member
Registered Member
I know but i still don't understand that well.

Sponsored content


View previous topic View next topic Back to top  Message [Page 1 of 4]

Go to page : 1, 2, 3, 4  Next

Permissions in this forum:
You cannot reply to topics in this forum