• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

How to make a web-site!

Just0ne

New Member
Joined
Nov 16, 2009
Messages
285
Reaction score
4
Location
Sweden
Can somebody make a tutorial for how to make a web-site? and what you need.... if someone arldey have done one please send me the link, thank you.
 
Visual Basic?..
Wrong language unless you're trying to do something else. But I doubt that as you wrote a short post.

Anyway, here is a mini tutorial on how to create a website.

Open notepad
Paste this:

Code:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Example Title</title>
</head>
<body>
<p>Cool Paragraph</p>
</body>    
</html>

And save as index.html

Now just open the file with an internet browser and WHALA.
A website.
 
Visual Basic?..
Wrong language unless you're trying to do something else. But I doubt that as you wrote a short post.

Anyway, here is a mini tutorial on how to create a website.

Open notepad
Paste this:

Code:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Example Title</title>
</head>
<body>
<p>Cool Paragraph</p>
</body>    
</html>

And save as index.html

Now just open the file with an internet browser and WHALA.
A website.

in the code it says: html xmlns="http://www.w3.org/1999/xhtml">
so is link/adress XHTML namespace or can i change it in Notepad++ to anything i want to like http://www.yoffaaz.org?

Reply please.
Thanks! Useful. :)
 
if your hosting from your computer the link will be your ip address. you have to buy a domain like .org .com .net. There are also free subdomains out there. Usually found with website hosts/
 
if your hosting from your computer the link will be your ip address. you have to buy a domain like .org .com .net. There are also free subdomains out there. Usually found with website hosts/

Ok.. But cant you change the site name to something els? ;O
 
Back
Top