| |
|
Welcome to KnowledgeSutra - Dear Guest | |
Is Creating A Real Website A Very Difficult Job? Need Help!
#1 Guest_iancovenant_*
Posted 21 July 2006 - 03:37 AM
#4
Posted 21 July 2006 - 06:08 AM
Xoops works on a 'modules' system, where you can install pre-coded sections of website (forums/arcades etc), & quickly get a working website. You can find a huge selection at www.xoops.org/modules. They are extremely simple to install - you just ftp them to public_html/your site/modules, & activate them from the Xoops administration menu.
I found this to be an easy way of learning the basics of ftp use, & will give you a good lesson in navigating the cpanel file manager.
Once you have mastered the basics of using the cpanel, you will find it much easier to upload & get your own coded webpages online.
#6
Posted 21 July 2006 - 07:18 AM
Then start with the basics. These programs work a lot like word processing software, so go ahead and type some text. Then switch to the Code or HTML view of the program and look at how it has been done. Probably something like this:
<p> Some random text. Lorem ipsum dolor sit amet... </p>
Go back to the Design or WYSIWYG view and try to change the font on your text, then look at the Code and see what has happened. Try changing size, colour, bold, italic, underline etc. Take it one step at a time, and take notes if you want. When you work out that, for example, to make something bold you do this:
<b>Bold</b> Not bold. You can also do this: <strong>Bold</strong> Not bold. They are exactly the same.You could note that down in a format you understand, on cue cards or something. Then you have your own reference of what you think is useful, organized in a way you understand. Then move on to more difficult things such as trying to make some text a link, or inserting an image. Tables are probably one of the hardest things you will come across, and your best bet if you ever need tables in a page would be to use your WYSIWYG editor in Design mode to draw the tables as this simplifies the whole process.
These are some links to freeware WYSIWYG editors, but I have not tried any of them, so they may not be to your taste. They all do pretty much the same thing, so it's a matter of what looks best for you and fits how you want to work. There's no harm in downloading a load, seeing which you like best and removing the rest.
WYSIWYG Web Builder
List from DirFile
Nvu WYSIWYG Editor
If you need any help with HTML then feel free to PM me, email me or get me on MSN Messenger.
#7
Posted 21 July 2006 - 07:44 AM
#8
Posted 21 July 2006 - 08:15 AM
really, it's just easy. if understanding a basic stuff is difficult for you, then don't do it. if it's frustrating for you to just even try, then don't. we have a quote here that says, "if you really want to do something, the motivation to do it will make you look for ways to accomplish it no matter what. excuses are only made by those who don't want to lift a finger".
and that's the reason why they made those personal webpage stuff like friendster or myspace, to make life easier to people who don't have the technical know-how, or at least to those who complain that it's difficult to learn.
#9
Posted 21 July 2006 - 09:41 AM
If you want more info/tutorials, PM me and i'll be glad to help
And if you're no good at photoshop, or don't have it, then I guess this was a pointless post
#10
Posted 21 July 2006 - 03:02 PM
#11
Posted 21 July 2006 - 04:29 PM
Do this on a few different sites & you will see what is involved in programming different things for web pages.
Edited by Mjay06, 21 July 2006 - 04:31 PM.
#12
Posted 21 July 2006 - 05:01 PM
To start off with, all you need to do is write this in Notepad or something:
<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:
<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!
Edited by NDPA, 21 July 2006 - 05:03 PM.
#15
Posted 25 July 2006 - 05:53 PM
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.
#16
Posted 28 July 2006 - 06:28 PM
mbacarra, on Jul 21 2006, 04:15 AM, said:
#17
Posted 30 July 2006 - 04:16 PM
Basically, start with this 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.
#18
Posted 30 July 2006 - 08:15 PM
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.
#19
Posted 08 December 2008 - 12:19 PM
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!
#22
Posted 09 December 2008 - 12:03 AM
Honestly, it's not very hard. I learned how to do build pages from scratch since sixth grade. Later in seventh grade, my dad got me Dreamweaver and everything became almost effortless.
Take some classes, read some more books, they really help.
Making a website is just like doing math, and like math, you ought to learn how to do it with your brain, then you can later on use the computers to help when you get lazy, ahah.
#23
Posted 09 December 2008 - 06:40 PM
iancovenant, on Jul 20 2006, 11:37 PM, said:
Well reading all that is here I have to say it really is not that hard. there a lot of good html programs out on the web that can help you to understand it all. Also too, there plenty of good and Free Web Templets too, where all you need to do is place your text,photos or whatever you need. but your basic HTML is not hard at all. Now for PHP and CSS? that is a step up. but if your a Noob, as you say. I feel it is best you start with the basics first, to get a good understanding of it all. We all was a "Noob" one remember that and I will be anything you want too, that there is not anyone here in the net that there 1st "real site" was perfect.
Good Luck to ya
#24
Posted 19 January 2009 - 08:38 PM
I would completely advise Joomla over all the other CMS's. It can even be intergrated with non joomla extensions such a PhpBB or Moodle. Take a look!
#25
Posted 19 January 2009 - 09:15 PM
phoenixinno, on Jan 19 2009, 04:38 PM, said:
I would completely advise Joomla over all the other CMS's. It can even be intergrated with non joomla extensions such a PhpBB or Moodle. Take a look!
I have to disagree with you on Joomla for the biggener. True that do have some nice options and all that but for a noob. Best to start small. download some free html editor like coffeecup and just play around with it. your page may not be perfect but you would get to know the differnt coding and in's and out's of web design. Also too if you would like a real website. may I suggest using a templet. also real easy to edit even for the noob.
Reply to this topic

1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users















