IPB

Welcome Guest ( Log In | Register )



Tags
This content has not been tagged yet
7 Pages V  < 1 2 3 4 > »   
Reply to this topicStart new topic

Is Creating A Real Website A Very Difficult Job? Need Help!


Mjay06
no avatar
Super Member
*********
Group: Members
Posts: 220
Joined: 4-July 06
From: Nottingham UK
Member No.: 26,049



Post #11 post Jul 21 2006, 04:29 PM
Something else you could do that you may find helpful is to click View/page source in your browser menu. This will show you how individual pages are coded.

Do this on a few different sites & you will see what is involved in programming different things for web pages.

This post has been edited by Mjay06: Jul 21 2006, 04:31 PM
Go to the top of the page
+Quote Post
gameratheart
no avatar
Privileged Member
*********
Group: [HOSTED]
Posts: 511
Joined: 14-November 05
From: Britannia!
Member No.: 14,287
myCENT:42.36



Post #12 post Jul 21 2006, 05:01 PM
Making a website is really just as hard as you want it to be. Even basic pages are really simple, as I will now demonstrate:

To start off with, all you need to do is write this in Notepad or something:

CODE
<html>
Whatever you want to say here.
</html>


Then just type what you want to appear on the page where it says.

That's your first page! Then you can start making it fancy by using colours and all that stuff.

Here's some stuff to remember:
CODE

<html> Starts a Web page.
</html> Ends a Web page.
<br> Puts things onto the next line down.
<hr> Makes a line go across your page.
<color="red"> Makes words that colour. (Replace red with any colour. Not all colours work.)
</color> Stops making words that colour.

Try it! It isn't hard!

This post has been edited by NDPA: Jul 21 2006, 05:03 PM
Go to the top of the page
+Quote Post
Guest_iancovenant_*
no avatar

Guests






Post #13 post Jul 21 2006, 06:55 PM
Thanks for all your help, much appreciated.

This post has been edited by iancovenant: Jul 22 2006, 02:22 AM
Go to the top of the page
+Quote Post
lawmatchmaker
no avatar
Member [Level 2]
*****
Group: Members
Posts: 76
Joined: 10-June 06
Member No.: 24,955



Post #14 post Jul 25 2006, 03:55 PM
Why not use a free content management system, they will give you the free templates to modify, you can add your own stuff later, saves alot of time than creating a template from scratch.
Go to the top of the page
+Quote Post
Dragonfly
no avatar
Privileged Member
*********
Group: Members
Posts: 702
Joined: 17-February 05
Member No.: 3,817



Post #15 post Jul 25 2006, 05:53 PM
Hi there!

Do not try to go too fast. I would recommend you to go slow and before you do anything else especially designing your webpages firstly just learn the simplest language of web that is HTML. I would like to recommend you pagetutor.com Firstly, just learn the simple code and then once you understand the code properly you can start using Frontpage (it comes with default installation of Microsoft Office in most of the versions) or Dreamweaver. Using any of those two designing software you can design easily but you must first understand the code itself. If one understand HTML php and others also can be learned on top of that and it becomes easier too.

It took me about a week to master HTML from pagetutor.com and that's how I started some 4 years ago.

All the best.
Go to the top of the page
+Quote Post
beeseven
no avatar
Privileged Member
*********
Group: Members
Posts: 629
Joined: 26-February 05
Member No.: 3,995



Post #16 post Jul 28 2006, 06:28 PM
QUOTE(mbacarra @ Jul 21 2006, 04:15 AM) [snapback]267878[/snapback]

it's like A-B-C. i bet a 10 year old can make his own website on his own. actually, when i came to this forum, i found some members who already have created some cool websites, and they're just 12 or 14?

I created my first full website from straight html in seventh grade which would be... 12 or 13. I had done some stuff before that though.
Go to the top of the page
+Quote Post
FirefoxRocks
no avatar
Super Member
*********
Group: Members
Posts: 273
Joined: 14-April 06
From: Ontario, Canada, North America, Planet Earth
Member No.: 21,845
myCENT:82.22



Post #17 post Jul 30 2006, 04:16 PM
I started doing HTML when I was 8. Didn't publish it, just made pages of old weather information. Of course the pages weren't valid or browser compatible (only knew about Internet Explorer back then). blink.gif

Basically, start with this code:

CODE
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<title>Stuff in Title Bar</title>
</head>
<body>
<h1>Heading of Page</h1>
<p>Paragraph</p>
</body>
</html>


That is your basic template for (X)HTML. Later on, you can add stuff to it like images, tables, etc. A good site to check out is W3Schools or Web Development Lessons. They give you easy instructions to design websites.

I strongly recommend text-based editors, not WYSIWYG editors. Often, WYSIWYG editors produce code that is invalid or non-browser-compatible.

A good editor is AceHTML Freeware. It gives some features that are valid XHTML and also you can find some scripts that are useful there. You can preview your page in there also (it looks like the IE version of the page). Get AceHTML Freeware on Download.com.

Be sure to validate your HTML pages, you don't want them to be full of errors. wink.gif
Go to the top of the page
+Quote Post
Panzer
no avatar
Super Member
*********
Group: Members
Posts: 309
Joined: 3-July 06
From: Middle Earth
Member No.: 26,018



Post #18 post Jul 30 2006, 08:15 PM
W3 schools is great. I got 2-3 HTML books outta the local library, some of them are really good and show you step by step how to put the code together. Some of the good ones have a list of all the HTML codes at the back.

I suggest you get a book, everything is much easier and you dont have to be on the computer when your reading it. Also print out a sheet of all the HTML codes and mayby write beside them what each one does.
Go to the top of the page
+Quote Post
minimcmonkey
no avatar
Super Member
*********
Group: [HOSTED]
Posts: 407
Joined: 19-June 08
From: United Kingdom - Cornwall!!!!!
Member No.: 63,876
myCENT:80.60



Post #19 post Dec 8 2008, 12:19 PM
HTML is quite easy (especially compared to more complex languages)
It can seem a bit intimidating at first, but once you get use to using it, and begin to remember all of the tags without having to refer to a reference, it becomes very easy!

When you say a "real" webpage, i presume you mean something that looks impressive with nice lots of elements where everything works well. This is something which you get better at as you learn. Also, to make an impressive site, you need to learn some other web languages. For instance, javascript is useful for making dynamic pages, like image swaps and drop down menus. And PHP with MySQL is useful for generating pages, ad making user specific pages, as it is secure.

If you keep learning and practicing HTML and other languages they become easier, and you begin to do it from memory, rather than using a reference all the time!
Go to the top of the page
+Quote Post
Variablez
no avatar
Member [Level 2]
*****
Group: [HOSTED]
Posts: 87
Joined: 13-October 08
Member No.: 69,638
myCENT:98.49



Post #20 post Dec 8 2008, 12:39 PM
Use Microsoft Office Frontpage, im sure you can get it cheap induvisually, it helps with HTML and Visual, its really cool then just click Veiw HTML and it shows the HTML code for the site you made! Simple!
Go to the top of the page
+Quote Post

7 Pages V  < 1 2 3 4 > » 
Reply to this topicStart new topic

Collapse

> Similar Topics

    Topic Title Replies Topic Starter Views Last Action
No New Posts 12 noxit 11,481 26th February 2009 - 12:59 AM
Last post by: novic_1223
No new   27 Dagoth Nereviar 4,306 22nd August 2009 - 09:38 PM
Last post by: Nameless_
No new   14 rpgsearcherz 1,904 3rd September 2009 - 05:01 PM
Last post by: webishqiptar
No New Posts   11 thewebkid 3,145 11th April 2009 - 05:00 AM
Last post by: zakaluka
No New Posts   5 Thunder 8,209 16th April 2009 - 08:21 AM
Last post by: amrik09
No new   17 EricDrinkard 16,930 11th August 2009 - 01:13 PM
Last post by: fadillzzz
No new   61 Etherion 45,063 17th November 2009 - 06:14 AM
Last post by: Johnmck93
No New Posts   2 Ho-oh'sRealm 81 12th November 2009 - 03:58 AM
Last post by: 1stentropy
No New Posts   4 andyy15 6,352 27th May 2009 - 09:36 PM
Last post by: Dook-E
No New Posts   1 Jarek_Gd 963 24th February 2008 - 12:49 PM
Last post by: rvalkass
No new   27 Assassin 12,377 20th August 2009 - 07:37 PM
Last post by: FruitRocks
No new   23 PnOyKiO 21,570 20th October 2009 - 12:22 PM
Last post by: -Sky-
No new   45 Dehornos 7,233 7th November 2009 - 08:01 PM
Last post by: bigtimedrama
No new   16 sonesay 2,594 31st July 2009 - 06:27 AM
Last post by: iworld200
No new 18 Vacant 16,260 26th September 2004 - 10:13 AM
Last post by: gotcha41


 



RSS Open Discussion Time is now: 22nd November 2009 - 05:53 AM

Web Hosting Powered by ComputingHost.com.