Doom Comic
Register | User Profile | Member List | F.A.Q | Privacy Policy | New Blog | Search Forums | Forums Home
Doomworld Forums : Powered by vBulletin version 2.2.5 Doomworld Forums > Misc. > Everything Else > Trying to build a website
Pages (3): [1] 2 3 »  
Author
All times are GMT. The time now is 19:40. Post New Thread    Post A Reply
Sodaholic
MY POSTS AREN'T THAT BAD!! SERIOUSLY!!!


Posts: 1369
Registered: 04-07


I've Googled "how to build a website", but have seen nothing but results of how to use one of those crappy non-html "easy site building" softwares. I'd rather just learn how to set up a website the proper way, using a directory, and HTML and CSS.

Not necessarily looking for how to code CSS or HTML, but rather how to put it all together into a functional site. Care to point me in the right direction?

Old Post 01-23-12 18:13 #
Sodaholic is offline Profile || Blog || PM || Email || Search || Add Buddy IP || Edit/Delete || Quote
DooMAD
Doom IS a religion.


Posts: 1167
Registered: 07-02



Sodaholic said:
Not necessarily looking for how to code CSS or HTML, but rather how to put it all together into a functional site. Care to point me in the right direction?

How it's put together is in the code. The directory or folder structure can be any way round you want it. Basically the first page of your site is either index.html or index.php (or whatever format you're using), and from there you can link to other pages and folders.

Old Post 01-23-12 18:19 #
DooMAD is offline Profile || Blog || PM || Email || Homepage || Search || Add Buddy IP || Edit/Delete || Quote
Gez
Why don't I have a custom title by now?!


Posts: 7044
Registered: 07-07


Create a folder. Create a file in that folder. Name it index.html. Write some dumb HTML code in it:
code:
<html> <head> <title>Baby's First Website! :D</title> </head> <body> <h1>Hello world!</h1> <p>This is a site, lol</p> </body> </html>

Save. Upload the folder's content on your webspace. Go to your webspace. Victory.

From there, you can read some HTML books to learn how to make internal links, and start having several pages. Then you can also make things properly, in standard compliant HTML, with the boring DOCTYPE declaration and stuff. Look into CSS on how to spice it up. Then you can look into browser-compatibility issues when you start to be ambitious as far as layout goes.

The next step is to become really annoyed at how tedious updating your site is, so you install some CMS software to do it for yourself, like Wordpress, Joomla, SPIP or whatever. Heck, maybe even just a wiki.

The final step is to have your CMS stop working for some reason and then you have to learn PHP and MySQL to fix it.

Old Post 01-23-12 18:34 #
Gez is offline Profile || Blog || PM || Search || Add Buddy IP || Edit/Delete || Quote
Jodwin
Forum Staple


Posts: 2741
Registered: 02-05


http://www.w3schools.com/

and specifically

http://www.w3schools.com/tags/default.asp

and

http://www.w3schools.com/cssref/default.asp

are the only places you need to look.

Old Post 01-23-12 19:20 #
Jodwin is offline Profile || Blog || PM || Homepage || Search || Add Buddy IP || Edit/Delete || Quote
Aliotroph?
postCount++


Posts: 1809
Registered: 03-02


You beat me to it. w3schools is handy.

Old Post 01-23-12 19:46 #
Aliotroph? is offline Profile || Blog || PM || Search || Add Buddy IP || Edit/Delete || Quote
Danarchy
YOU CAN'T CUT BACK ON FUNDING! YOU WILL REGRET THIS!


Posts: 15854
Registered: 01-01



Sodaholic said:
Not necessarily looking for how to code CSS or HTML, but rather how to put it all together into a functional site. Care to point me in the right direction?

Seriously, at the very least learn html. It's very simple and knowing it will do you a world of good.

Old Post 01-23-12 21:19 #
Danarchy is offline Profile || Blog || PM || Search || Add Buddy IP || Edit/Delete || Quote
Whoo
Forum Regular


Posts: 667
Registered: 04-07


I make my designs in Photoshop and do all the coding in Dreamweaver.

In the end you need to know HTML & CSS coding, which really isn't that hard.

Old Post 01-23-12 22:37 #
Whoo is online now Profile || Blog || PM || Search || Add Buddy IP || Edit/Delete || Quote
K!r4
Senior Member


Posts: 1210
Registered: 05-07


You can learn both HTML and CSS in more or less a week. Once you know the basics it's pretty easy.

Old Post 01-23-12 23:02 #
K!r4 is offline Profile || Blog || PM || Search || Add Buddy IP || Edit/Delete || Quote
Maes
I like big butts!


Posts: 8662
Registered: 07-06



K!r4 said:
You can learn both HTML and CSS in more or less a week. Once you know the basics it's pretty easy.


Only if you can handle the disappointment of learning that with just HTML (even if with CSS) you can't go much beyond the level of a 1996 geocities page. That's when all the fugliness such as table layouts, WYSIWYG editors, script copypasta kick in, plus the anxiety of keeping up with the latest and shiniest. Flash plugins? Gotta have 'em! AJAX apps? Gotta have em too. Twatter/Faceshit buttons? Absolutely!

And that's even before you consider "Gee, wouldn't it be cool if I had my own server/database/whatever?". Goodnight...

Old Post 01-23-12 23:21 #
Maes is online now Profile || Blog || PM || Homepage || Search || Add Buddy IP || Edit/Delete || Quote
DooMAD
Doom IS a religion.


Posts: 1167
Registered: 07-02



Maes said:


Only if you can handle the disappointment of learning that with just HTML (even if with CSS) you can't go much beyond the level of a 1996 geocities page. That's when all the fugliness such as table layouts, WYSIWYG editors, script copypasta kick in


Ur doin it wrong.

Old Post 01-23-12 23:26 #
DooMAD is offline Profile || Blog || PM || Email || Homepage || Search || Add Buddy IP || Edit/Delete || Quote
Maes
I like big butts!


Posts: 8662
Registered: 07-06



DooMAD said:
Ur doin it wrong.


yeah <div> is all the rage last time I heard.

In any case, I always considered building websites manually (and keeping them updated) beyond a very basic level to be a tedious chore usually not worth the effort. It's more like something you do when you're like 18-19 and don't mind all-nighters and mish-mashing everything you can find. Pure flash websites are another story though, and that's where it may still pay to do it the "old" way (well...old in the sense that you don't use CMS).

Old Post 01-23-12 23:56 #
Maes is online now Profile || Blog || PM || Homepage || Search || Add Buddy IP || Edit/Delete || Quote
Technician
Still no custom title


Posts: 5772
Registered: 08-04


You can make a nice 2.0 styled website with just HTML and CSS. If you know photoshop, layout is a snap. Also, there is no shame in downloading a CSS template and modifying it to your liking.

Old Post 01-24-12 00:06 #
Technician is offline Profile || Blog || PM || Email || Search || Add Buddy IP || Edit/Delete || Quote
DooMAD
Doom IS a religion.


Posts: 1167
Registered: 07-02



Maes said:
In any case, I always considered building websites manually (and keeping them updated) beyond a very basic level to be a tedious chore usually not worth the effort. It's more like something you do when you're like 18-19 and don't mind all-nighters and mish-mashing everything you can find.

That's true enough. Unless you have a natural talent for designing layouts quickly, then it can be pretty time consuming to start from scratch. Much easier to recycle bits from existing layouts or templates.

Old Post 01-24-12 00:20 #
DooMAD is offline Profile || Blog || PM || Email || Homepage || Search || Add Buddy IP || Edit/Delete || Quote
hex11
Senior Member


Posts: 1482
Registered: 09-09


Last time I made a personal web page it was with a (scripting language) template system and makefile. I hardly used any raw html tags, except for a few special cases. It worked fine and didn't need any database. The source (templates) just got saved in CVS and the makefile built static html pages from those, and then uploaded any modified files to the server.

But I won't bother with any of that fancy stuff next time. Heck, I'll probably just slap some files in a directory tree and point a gopher daemon at the root. Tags? I don't need no stinkin' tags! This is more like it:
http://phlogosphere.org/

Old Post 01-24-12 00:31 #
hex11 is offline Profile || Blog || PM || Search || Add Buddy IP || Edit/Delete || Quote
Sodaholic
MY POSTS AREN'T THAT BAD!! SERIOUSLY!!!


Posts: 1369
Registered: 04-07


Thanks for the advice, guys. The reason I mentioned not wanting input about HTML or CSS was because I can already easily learn it on my own, and was more concerned with any sort of needed setup outside of those things.

That w3schools thing looks like it will be very helpful.

How difficult would it be to implement a wiki at some point? Obviously, I want to get the main site out of the way first, and the wiki is low priority, but I do want to have one at one point.

Also, don't bother asking what this site's going to be about, that will be revealed in time.

Old Post 01-25-12 02:37 #
Sodaholic is offline Profile || Blog || PM || Email || Search || Add Buddy IP || Edit/Delete || Quote
Whoo
Forum Regular


Posts: 667
Registered: 04-07


Wikis require both PHP and MySQL, so you'll need to check to see if your server supports it.

Knowing how to code in PHP would also help.

Old Post 01-25-12 02:44 #
Whoo is online now Profile || Blog || PM || Search || Add Buddy IP || Edit/Delete || Quote
Planky
Senior Member


Posts: 1128
Registered: 12-02


I usually recommend people stick with a wordpress.com account these days. Not that few simple HTML pages are hard.

That said, I run various wordpress blogs with custom themes/code. I love tinkering with PHP/MySQL and usually enjoy troubleshooting my dodgy ass code. Notepad/Nano is my preferred editors.

Old Post 01-25-12 02:57 #
Planky is offline Profile || Blog || PM || Search || Add Buddy IP || Edit/Delete || Quote
Bloodshedder
Spellchecker


Posts: 4571
Registered: 03-02



Whoo said:
Wikis require both PHP and MySQL, so you'll need to check to see if your server supports it.

Wikis require both a server-side scripting language and some sort of storage. PHP and mySQL aren't required; you could write one in COBOL and use flat files for storage.

Old Post 01-25-12 06:16 #
Bloodshedder is offline Profile || Blog || PM || Email || Homepage || Search || Add Buddy IP || Edit/Delete || Quote
Maes
I like big butts!


Posts: 8662
Registered: 07-06


Then again, there's always the danger of being suckered into something like this...where building websites meets "walled garden" marketing and get-rich-quick schemes!

Old Post 01-25-12 11:01 #
Maes is online now Profile || Blog || PM || Homepage || Search || Add Buddy IP || Edit/Delete || Quote
Jodwin
Forum Staple


Posts: 2741
Registered: 02-05



Maes said:
Then again, there's always the danger of being suckered into something like this...where building websites meets "walled garden" marketing and get-rich-quick schemes!

BEST SITE EVER

Old Post 01-25-12 12:05 #
Jodwin is offline Profile || Blog || PM || Homepage || Search || Add Buddy IP || Edit/Delete || Quote
fraggle
Super Moderator


Posts: 6000
Registered: 07-00



Bloodshedder said:

Wikis require both a server-side scripting language and some sort of storage. PHP and mySQL aren't required; you could write one in COBOL and use flat files for storage.

Perhaps using COBOL ON COGS.

Old Post 01-25-12 12:32 #
fraggle is offline Profile || Blog || PM || Email || Homepage || Search || Add Buddy IP || Edit/Delete || Quote
Maes
I like big butts!


Posts: 8662
Registered: 07-06



fraggle said:
Perhaps using COBOL ON COGS.


HEY HEX11, WHERE ARE YOU?

Old Post 01-25-12 12:37 #
Maes is online now Profile || Blog || PM || Homepage || Search || Add Buddy IP || Edit/Delete || Quote
hex11
Senior Member


Posts: 1482
Registered: 09-09


Badass! I'm not sure I can handle all the javascript though. Well my browser can't, hell it doesn't even do CSS. :D

Old Post 01-25-12 12:58 #
hex11 is offline Profile || Blog || PM || Search || Add Buddy IP || Edit/Delete || Quote
Mr. T
Senior Member


Posts: 1270
Registered: 12-03


Wow, so do you even know what "the internet" looks like?

Old Post 01-25-12 13:00 #
Mr. T is offline Profile || Blog || PM || Homepage || Search || Add Buddy IP || Edit/Delete || Quote
hex11
Senior Member


Posts: 1482
Registered: 09-09


My Internet experience is pretty much like these screenshots:
http://links.twibright.com/features.php

Some sites look a bit strange due to the lack of CSS, but that mostly manifests itself in the form of positioning bugs (like a graphical menu doesn't end up in the exact spot the site designers planned it to be).

The only real trouble is when a site requires javascript, and then it just means I have to decide whether it's worth it for me to startup the pig (firefox). In most cases, I just don't bother.

And TBH, when it comes to forums, I much prefer a pure text interface like Usenet and dialup or telnet BBS's. Although NNTP isn't necessarily pure text, because you can encode & attach stuff to the messages. The other nice thing is it gives you a lot more power to thread messages how you want, save messages or threads, manage killfile, etc. Plus it's decentralized so less prone to outages or government interference.

Old Post 01-25-12 13:19 #
hex11 is offline Profile || Blog || PM || Search || Add Buddy IP || Edit/Delete || Quote
Maes
I like big butts!


Posts: 8662
Registered: 07-06



hex11 said:
[B]The only real trouble is when a site requires javascript, and then it just means I have to decide whether it's worth it for me to startup the pig (firefox). In most cases, I just don't bother.


Hmm...but that means that practically 99.99% of modern websites (or even all those made in the last 15 years) will not work at all or malfunction in some way. OK, so "good practice" dictates that there should be a pure HTML fallback and that AJAX should not be relied upon to complete the rendering client-side...but who complies with that? People have grown too accustomed to their dynamic pages and "rich internet applications" that there's no going back.

Old Post 01-25-12 13:34 #
Maes is online now Profile || Blog || PM || Homepage || Search || Add Buddy IP || Edit/Delete || Quote
hex11
Senior Member


Posts: 1482
Registered: 09-09


I really have no idea what percentage of sites are functional without javascript, but for the most part the ones I visit are okay. The only ones that give me any trouble are online banks, some online stores, and some file sharing sites. I don't "shop" very much, so it's not a big deal.

The other thing about javascript is that it adds complexity, thus potential security risks and other bugs. I'm guessing that a decent number of designers have figured out it's much easier to troubleshoot their site without all that overhead, so it makes sense to at least ensure it functions in pure HTML mode. Heck, if nothing else it's easier to setup automated tests and do QA that way.

Old Post 01-25-12 13:51 #
hex11 is offline Profile || Blog || PM || Search || Add Buddy IP || Edit/Delete || Quote
Phml
Forum Staple


Posts: 2035
Registered: 06-09



My Internet experience is pretty much like these screenshots:


Wow. That is atrocious. And this isn't me railing against "text only" either, I'm fine with black text on white background and absolutely nothing else ; but this? I can't understand why would someone willfully suffer this. Only the middle screenshot (this one) looks readable.

Edit: I meant readable as in enjoyable to read, able to be read easily (easily being the keyword).

Last edited by Phml on 01-25-12 at 16:47

Old Post 01-25-12 14:19 #
Phml is offline Profile || Blog || PM || Search || Add Buddy IP || Edit/Delete || Quote
hex11
Senior Member


Posts: 1482
Registered: 09-09


I don't have any problems reading those screenshots. Well, except for the fact that I don't read greek or russian. :D But I can make out the glyphs very well. Maybe your screen is different or something. Mine is a 4/3 aspect ratio 14-inch LCD that I run at 800x600 (except for fullscreen mode games). Anyway, the fonts and colors of the browser are configurable, so it's no big deal.

Old Post 01-25-12 15:32 #
hex11 is offline Profile || Blog || PM || Search || Add Buddy IP || Edit/Delete || Quote
Maes
I like big butts!


Posts: 8662
Registered: 07-06


As a curiosity, how does DW look to you? Can you post a screen grab?

Old Post 01-25-12 15:40 #
Maes is online now Profile || Blog || PM || Homepage || Search || Add Buddy IP || Edit/Delete || Quote
All times are GMT. The time now is 19:40. Post New Thread    Post A Reply
Pages (3): [1] 2 3 »  
Doomworld Forums : Powered by vBulletin version 2.2.5 Doomworld Forums > Misc. > Everything Else > Trying to build a website

Show Printable Version | Email this Page | Subscribe to this Thread

 

Forum Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is OFF
vB code is ON
Smilies are OFF
[IMG] code is ON
 

< Contact Us - Doomworld >

Powered by: vBulletin Version 2.2.5
Copyright ©2000, 2001, Jelsoft Enterprises Limited.

Forums Directory