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.
|