Flux rss

How to create your own Website

Bookmark Bookmark & Share
Last update on August 2, 2008 08:02 AM by jak58
Published by netty5

How to create your own Website







Upon the creation of a website, many people as well as companies choose to call for a Web Designer for help. However, there are simple ways to learn how to do a basic website yourself and they will be explained in this article.

What is HTML?


To create a website, you will need to learn the basics of HTML. HTML is the acronym for HyperText Markup Language, which is the programming language used to create hypertext documents on the World Wide Web. The language is made up of a set of codes and symbols that will generate text, images, sounds, frames and animation on your browser pages.

Two common ways to start your website are either to create your own codes in a simple text editor and save them as a .htm file. or use a HTML generator software.

Note: I will strongly suggest you to always start by creating a webpage. You can hence use the codes learnt to generate other pages and link them together to create your own website.

Requirements

For those using Windows, start by opening a new Notepad document

For those running MAC, open a new SimpleText document

For OSX users, open TextEdit and make the following changes:

1. Open your “Format” menu and choose “Plain Text”
2. Under the “Text Edit” menu, open “Preferences” window and choose the option “Ignore rich text commands in HTML files”.

Example 1:


Once you have your blank document, you can start by typing in:


<html>
<head>
<title>This is the title of your page</title>
</head>
<body>
This is where all your contents will appear
</body>
</html>



Note:

1. Always save your documents with a .htm or html extension to display them in your web browser. (e.g. index.htm).
2. To edit your source document, select the “View” option on your toolbar in the browser window and select “Source”.
3. Don’t forget to save every changes made to your document.
4. To view the modifications made to the document in the browser window, refresh the page by using the F5 key.

HTML Tags


An HTML tag is defined as a markup that is added into an HTML document to give more information about the unit of the content. An HTML tag is put in between brackets and needs a closing tag. (e.g. <html> </html>).

HTML Elements


Elements are markup tags used to format some sections of a web page. An example of an HTML element is the <b> tag, used to bold the text displayed in the browser.

<html> is used to tell your browser that the file is made up of HTML-coded data. </html> is used at the very end of the document to tell your browser that the HTML contents end there.

<head> contains the first part of the document and is where the title of your browser page will be found. It can also contain the commands used to format the display of your browser (e.g. CSS calls). </head> is hence used to end this section. This part will not be displayed in your browser.

<title> will be used to label your website. </title> is hence used to indicate the end of that command.

<body> all the contents that will be displayed in your browser will lay between the start and end body tags.

Basic HTML Tags to Remember


Headings

Headings are used to indicate the subject of the following content in your web page. In HTML, they can vary in size, from <h1> to <h6>. Remember that <h1> will indicate the largest heading and <h6> the smallest. Also, a heading has an opening tag <h2> and a closing tag </h2>.
(e.g. <h1>All about HTML</h1>).

Paragraphs

Paragraphs are used to separate text blocks in your web page. In HTML, they are defined with the <p> tag. A paragraph will have an opening tag <p> and a closing tag </p>.
(e.g. <p>This section has defined HTML tags</p>).

Line Breaks

In HTML, line breaks DO NOT require a closing tag. Hence, they are simply defined with the <br /> tag.
(e.g. <br />
This section has defined HTML tags
).

Comments

Comments are inserted in an HTML page to locate the different sections on a webpage by its designer. They are defined with the <!--- --> tag. Comment tags are not displayed in the browser, and can hence be used anywhere in the document without affecting the format of the webpage.
(e.g. <!---Content starts here -->
<!---End of contents-->
)

Example 2



<!---Webpage starts here -->
<html>
<head>
<title>All About HTML</title>
</head>

<!---Content starts here -->
<body>
<h1> What is HTML?</h1>
<p> HTML is the acronym for HyperText Markup Language </p>
</body>
<!---Content ends here -->

</html>
<!---Webpage ends here -->

HTML Attributes and Values


HTML Attributes are information added to the elements and are used to include a particular characteristic to the HTML elements. HTML attributes are always written together with a value (e.g. name=”value”) and are put at the start tag of an HTML element.

For example, if you want the heading to be placed at the center of your page instead of being displayed on the left by default, you can add the align attribute to the tag :<h1 align="center">.
The value will give the specific information about the attribute, that is, the value in <h1 align="center"> is center. A value is commonly written with the equal sign and is enclosed by quotation marks. (e.g. name=”value”)

Example 3



<!---Webpage starts here -->
<html>
<head>
<title>All About HTML</title>
</head>

<!---Content starts here -->
<body>
<h1 align="center">What is HTML?</h1>
<p> HTML is the acronym for HyperText Markup Language </p>
</body>
<!---Content ends here -->

</html>
<!---Webpage ends here -->

Colour Tags


Colour tags allow you to modify the colour of the text that is displayed in the browser window. <BODY TEXT="blue"> is an example on how to modify the text colour if you wish to do so.

In HTML, you can also use colour codes to obtain specific colours by using hexadecimal codes. So called hexadecimal triplets correspond to the colours red, green and blue (RGB). Hence, the color tag in hexadecimal will look somewhat like <BODY TEXT="#000258">. You can get the colour codes and names by following this link: http://www.computerhope.com/htmcolor.htm

You can also use colour tags to modify the background colour of your webpage/website by adding the BGCOLOR attribute. Hence, <BODY BGCOLOR="#000258"> will change the background colour from its default white.

Example 4



<!---Webpage starts here -->
<html>
<head>
<title>All About HTML</title>
</head>

<!---Content starts here -->
<body bgcolor= “#808080”>
<body text="#ffffff">.
<h1 align="center"> What is HTML?</h1>
<p> HTML is the acronym for HyperText Markup Language </p>
</body>
<!---Content ends here -->

</html>
<!---Webpage ends here -->


Note:

1. I will suggest you NOT to choose striking colours like yellow or pink for your text as these colours tend to be disturbing for the eyes.
2. Also, try to use a maximum of 4 slightly matching colour tones that correspond to the atmosphere of your website for a better harmonizing result.
3. Do NOT make awkward colour matches like pink text on a blue background for formal websites as they will look too fancy.

Text Formatting


Text formatting tags allow you to modify your text display in the browser window. For example, to bold a text, you can use the <b> tag. (e.g. <b> This text will have a bold font </b>). Below is the list of the common text formatting tags that you can use to alter your text display:

1. Bold Tag
<b>This text will be in bold</b>

2. Italic Tag
<i>This text will be in italic</i>

3. Underline Tag
<u>This text will be underlined</u>

4. Emphasize Tag
<em>This will emphasize your text</em>

5. Strong Tag
<strong>This text will be strong</strong>

6. Big Tag
<big> This will define big text</big>

7. Small Tag
<small> This will define small text</small>

8. Subscript Tag
<sub>This text will be subscripted</sub>

9. Superscript Tag
<sup>This text will be superscripted</sup>

10. Center Tag
<center> This text will be centered</center>

11. Left Tag
<left>This text will display in the left hand side of the screen</left>

12. Right Tag
<right>This text will display in the right hand side of the screen</right>

13. Unordered List Tag
<ul>
<li>This is an unordered list</li>
<li>This is an unordered list</li>
</ul>

14. Ordered List Tag
<ol>
<li>This is number 1 on my list</li>
<li>This is number 2 on my list</li>
</ol>

Note:

1. These tags can also be combined. If you want an underlined bold text, you can use <u><b>This text will be bold and underlined</b></u>

2. However, always close the first tag that you have opened last. In the above example, the <u> has been opened FIRST, before the <b> tag, but has been closed LAST.

Example 5



<!---Webpage starts here -->
<html>
<head>
<title>All About HTML</title>
</head>

<!---Content starts here -->
<body bgcolor= “#808080”>
<body text="#ffffff">.
<h1 align="center"> What is HTML?</h1>
<p><b>HTML is the acronym for HyperText Markup Language </b></p>
<i>The language is made up of a set of codes and symbols that will generate:</i>
<ul>
<li> text, </li>
<li> images,</li>
<li> sounds,</li>
<li> frames </li>
<li> animation on your browser pages. </li>
</ul>
<br />
Two common ways to start your website are either:
<ol>
<li><u>to create your own codes in a simple text editor and save them as a .htm file. or </u></li>
<li><u>use a HTML generator software.</u></li>
</ol>
</body>
<!---Content ends here -->

</html>
<!---Webpage ends here -->

HTML Division Tags


Horizontal Rule

Horizontal rules are used to divide or subdivide sections of your webpage. The <hr> tag is used to create a horizontal line and can be altered to create different types of lines by modifying their size, color or width.
E.g. <hr width="75%" size="2" align="center"> or <hr color="#ffffff">

Solid Line
The <hr noshade> tag is used to create a solid line. It alters slightly from the horizontal rule tag as it produces the line without the 3D cutout generated by the <hr> tag.

Example 6



<!---Webpage starts here -->
<html>
<head>
<title>All About HTML</title>
</head>

<!---Content starts here -->
<body bgcolor= “#808080”>
<body text="#ffffff">.
<h1 align="center"> What is HTML?</h1>
<hr width="100%" size="2" align="center" color="#ffffff">
<p><b>HTML is the acronym for HyperText Markup Language </b></p>
<i>The language is made up of a set of codes and symbols that will generate:</i>
<ul>
<li> text, </li>
<li> images,</li>
<li> sounds,</li>
<li> frames </li>
<li> animation on your browser pages. </li>
</ul>
<br />
<hr noshade size="5">
Two common ways to start your website are either:
<ol>
<li><u>to create your own codes in a simple text editor and save them as a .htm file. or </u></li>
<li><u>use a HTML generator software.</u></li>
</ol>
</body>
<!---Content ends here -->

</html>
<!---Webpage ends here -->

Image Tags


HTML documents enable you to insert images by using image tags. You can either browse an image from an online URL or from your own computer. The image tag <img src> stands for “image source”; hence, the image path should be defined after the attribute. If the image is found in the same folder as your source document, there is not need for you to enter the whole path directory.

E.g. <img src = “http://www.theodora.com/gif4/html_colors.gif”>
or <img src = “colorcode.gif”> or <img src = “colorcode.jpg”>

Alignment Tag
Once more, you can use the ALIGN attribute to display the image either in the center, right-hand side or left-hand side of your browser.

E.g.1
<img src = “http://www.theodora.com/gif4/html_colors.gif” align=”center”>
Note: However, it might happen that your browser does not support this tag. You can hence use the <center> tag just before the image tag to center your image in the browser.

E.g.2
<center><img src = “http://www.theodora.com/gif4/html_colors.gif”></center>

Image Size
The size of your displayed image can be modified by using the WIDTH and HEIGHT attribute. You can either use percentage or the pixels to size your image.

E.g.1
<img src = “http://www.theodora.com/gif4/html_colors.gif “width=”50%” height=”50%”>
E.g.2
<img src = “http://www.theodora.com/gif4/html_colors.gif “width=”200px” height=”600px”>

Image Border
If you want to insert a border to your image, you can use the BORDER attribute to do so.

E.g.
<img src = “http://www.theodora.com/gif4/html_colors.gif “ border=”5”>

Runaround Space
The runaround space refers to the space gap around the image. This is a very useful tag when you have text around your picture. It is defined using the VSPACE attribute for the top and bottom sides and HSPACE attribute is used for the left and right sides.

E.g.
<img src = “http://www.theodora.com/gif4/html_colors.gif “ vspace=”5” hspace=”5>

Alt Attribute
The Alt attribute labels the displayed image when the mouse is rolled over it. Hence, if for some reason, the browser cannot display the image, the user can still know what image has been displayed at this specific place.
<img src = “http://www.theodora.com/gif4/html_colors.gif “ alt=”hexadecimal color codes”>

Example 7



<!---Webpage starts here -->
<html>
<head>
<title>All About HTML</title>
</head>

<!---Content starts here -->
<body bgcolor= “#808080”>
<body text="#ffffff">.
<h1 align="center"> What is HTML?</h1>
<hr width="100%" size="2" align="center" color="#ffffff">
<p><b>HTML is the acronym for HyperText Markup Language </b></p>
<i>The language is made up of a set of codes and symbols that will generate:</i>
<ul>
<li> text, </li>
<li> images,</li>
<li> sounds,</li>
<li> frames </li>
<li> animation on your browser pages. </li>
</ul>
<br />
Two common ways to start your website are either:
<ol>
<li><u>to create your own codes in a simple text editor and save them as a .htm file. or </u></li>
<li><u>use a HTML generator software.</u></li>
</ol>
<hr noshade size="5">
<h2>Color Codes</h2>
<p>You can use hexadecimal color codes provided by Theodora to create your own website atmosphere</p>
<img src = http://www.theodora.com/gif4/html_colors.gif vspace="10" hspace="10" alt="Hexadecimal Color Codes">
This is the example that you have with the vspace and hspace attribute
</body>
<!---Content ends here -->

</html>
<!---Webpage ends here -->

Linking Tags


In HTML, linking tags are used to jump from one section of the page to another or from one page to another. They are called Internal Links if they allow you to jump from one section or your own website’s page to another and External Link when they open up a new browser window from another website. The major advantage of linking tags is that they allow you to create a dynamic website instead of creating a scrolling webpage.

External Link

<a href= “http://www.webaddress.com/”>Web Address Link<a/> will display the “Web Address Link” as a hyperlink in your webpage and when the user will click on the text, it will load the page www.webaddress.com

Internal Link

There are two specific ways to insert an internal link:

1. To jump from the current page to another page on the same website
2. To jump from the current section of the page to another section on the same page.


To be able to jump from one section to another, you should first give a name to the section so that the tag can locate it when it is being called. For example, if the section concerning HTML Links has to be inserted in the upper section of the webpage, just above the “HTML Links” heading, insert the tag <a name=”links”>. The “links” value will refer to the section that has to be located; hence if a section of your webpage is based on cats, insert the tag <a name=”cats”> just above the heading for cats.

After this process, you should also insert the link from which you want to jump from; in this example, if you want to jump from the top of the page to the location of “HTML Links” found at the bottom part of the page, insert <a href=”#links”>Linking Tags</a>. The hyperlinked text “Linking Tags” will appear and when the user will click on it, he will jump from his current location to the indicated section.

Example 8



<!---Webpage starts here -->
<html>
<head>
<title>All About HTML</title>
</head>

<!---Content starts here -->
<body bgcolor= “#808080”>
<body text="#ffffff">
<a href="#color">Color Codes</a>
<br />
<a href="#links">Linking Tags</a>
<h1 align="center"> What is HTML?</h1>
<hr width="100%" size="2" align="center" color="#ffffff">
<p><b>HTML is the acronym for HyperText Markup Language </b></p>
<i>The language is made up of a set of codes and symbols that will generate:</i>
<ul>
<li> text, </li>
<li> images,</li>
<li> sounds,</li>
<li> frames </li>
<li> animation on your browser pages. </li>
</ul>
<br />
Two common ways to start your website are either:
<ol>
<li><u>to create your own codes in a simple text editor and save them as a .htm file. or </u></li>
<li><u>use a HTML generator software.</u></li>
</ol>
<hr noshade size="5">
<h2>Color Codes</h2>
<a name="color">
<p>You can use hexadecimal color codes provided by Theodora to create your own website atmosphere</p>
<img src = http://www.theodora.com/gif4/html_colors.gif vspace="10" hspace="10" alt="Hexadecimal Color Codes">
This is the example that you have with the vspace and hspace attribute
<br />You can find a useful to visit Microsoft’s website by clicking on this link<a href= "http://www.microsoft.com/"> Microsoft </a>
<hr noshade size="5">
<a name="links">
<h2>Linking Tags</h2>
<br /> This section will discuss about the importance of Linking tags on your website.
</body>
<!---Content ends here -->

</html>
<!---Webpage ends here -->


Note:
These are only examples on how you can make use of the linking tags. You can of course alter their emplacement to make your website more user-friendly and attractive.


Target Window

The target window will load the linked page in another browser window so that the user is able to stay on your website’s current page and view the hyperlinked address in another browser.

<a href= “http://www.webaddress.com/” target= “_blank”>Web Address Link<a/>

Table Tags


Inserting tables in your website can be very useful to display the information in an orderly way. It will also allow you to handle your text and graphics more precisely.

The opening tag <table> is used to tell your browser that the table in the page starts there and ends with the </table> tag. You can also modify the colour, size and border size of your table.

The table’s size can be altered by using the <table width=”0” height=”0”> tag. You can either make use of the pixels or the percentage to change the size of the table.

You can make use of the tag <table border =”0”> for example to make an invisible border in your browser.

The <table cellpadding=”0”> tag is used to make a space gap between the text and the inner line of the table’s border.

The <table cellspacing=”0”> tag is used to insert a space gap between the inner and outer line of the table’s borders.

A table is made up of cells that are defined by the columns and rows within the table. A cell will be the space where your contents will be inserted. The column tag is defined as the <td> and </td> tags and the rows are defined as the <tr> and </tr> tags. To modify the cell width, you can use the <td width = “0”> tag. The size can be either set in the percentage or in pixel.

You can also align your rows and columns by adding the ALIGN attribute in your tags. Hence, to align a particular row, for example, insert the tag <tr align=”top”> and to align a column, insert the tag <td align=”center”>
To align your cell, you can use the attribute VALIGN. <td align=”center” valign=”top”> will place the cell to the upper center of your page.

To span a column, you can make use of the tag <td colspan=”1”> to set the number of columns the cell should span. Note that the default value is set to 1.

Also, to span a cell to a number of rows, use the <td rowspan=”0”> tag.

Example 9



<!---Webpage starts here -->
<html>
<head>
<title>All About HTML</title>
</head>

<!---Content starts here -->
<body bgcolor= “#808080”>
<body text="#ffffff">
<a href="#color">Color Codes</a>
<br />
<a href="#table">Table Tags</a>
<h1 align="center"> What is HTML?</h1>

<!---Your first table starts here -->
<table border="1">
<td width="1000">
<p><b>HTML is the acronym for HyperText Markup Language </b></p>
<i>The language is made up of a set of codes and symbols that will generate:</i>
<ul>
<li> text, </li>
<li> images,</li>
<li> sounds,</li>
<li> frames </li>
<li> animation on your browser pages. </li>
</ul>
<br />
Two common ways to start your website are either:
<ol>
<li><u>to create your own codes in a simple text editor and save them as a .htm file. or </u></li>
<li><u>use a HTML generator software.</u></li>
</ol>
</td>
</table>
<!---Your first table ends here -->

<h2>Color Codes</h2>

<!---Your second table starts here -->
<table border="0">
<td width="500">
<img src = http://www.theodora.com/gif4/html_colors.gif vspace="10" hspace="10" alt="Hexadecimal Color Codes">
<a name="color">
<td align=”right” valign=”top”>
<p>You can use Hexadecimal Color Codes provided by Theodora to create your own website atmosphere. </p>More text can be added here. <p>More text can be added here.</p>More text can be added here.<p>More text can be added here.</p>More text can be added here.</p>
</td>
</td>
</table>
<!---Your second table ends here -->

<a name="table">
<h2>Table tags</h2>
This section will give you more details about table tags
<p>

<!---Your third table starts here -->

<table border="2" bordercolor="#ffffff" cellpadding="1" cellspacing="2" width="70%" valign="middle" align="center">
<th width="100%" colspan="3" bgcolor="red">Heading</th><tr>
<td colspan="3" height="50" align="center">
This is another part of the content
</td>
</tr>
<tr>
<td align="center" bgcolor="red"><i>Column 1</i></td><td align="center" bgcolor="red"><i>Column 2</i></td><td align="center" bgcolor="red"><i>Column 3</i></td></tr>
<tr>

<td rowspan="4" width="33%" align="center" bgcolor="red"> Cell Spanning in 3 Rows (2nd and 3rd merged)</td>
<td rowspan="3" width="33%" align="center" bgcolor="red"> Cell Spanning in 2 Rows (1st and 2nd Cell merged)</td>
<td width="33%" align="center" bgcolor="red">1st Cell</td>
</tr>
<td width="33%" align="center" bgcolor="red">2nd Cell</td>
</tr>
<tr>
<td width="33%" align="center" bgcolor="red">3rd Cell</td>
</tr>
<tr>
<td width="33%" align="center" bgcolor="red">3rd Cell</td><td width="33%" align="center" bgcolor="red"> 4th Cell</td>
</tr>
</table>
<!---Your third table ends here -->

</body>
<!---Content ends here -->

</html>
<!---Webpage ends here -->

HTML Frame Tags


HTML frames allow you to create independent windows within a webpage. They are very useful as they allow you to display more than one document a webpage.

To make use of the frames, you must have at least two different .htm files from which one will be labeled index.htm file. The index.htm file will be where all the windows will be displayed in. The frame tag is defined as <frame> and the <frameset> tag is used to define the set of frames that are being used in the index.htm file.

Example 10



<html>
<head>
<title> Try the frame tags</title>
</head>
<frameset rows="100,*">
<frame name= "top" src="banner.htm">
<frameset cols="100,*,100">
<frame name="left" src="menu.htm">
<frame name="middle" src="content.htm">
<frame name="right" src="right.htm">
</frameset>
</html>


<frameset rows> will set up the size of the rows that will be displayed in your browser.

<frameset cols> will set up the size of the columns that will be displayed in your browser.

The <frame name> tag will name the frame and is used to link them to the main window.

<frameset frameborder> tag will be used to set a border to your frames. Setting it to 0 will ensure that it will be compatible with all browsers.

<frameset framespacing> will set a space between the closest frames.

<frame marginwidth> will set the width space on both sides of the frames. The size should however be set in pixels.

<frame marginheight> will set the top and bottom margin size in pixels.

<frame scrolling> tag will able the vertical or horizontal scrollbar on your frame. Its value must either be set to “yes”, “no” or “auto”.

The <frame noresize> tag will not allow the user to resize the displayed frame in the browser
Create own Domain & Hosting Hello, How can i Create my own Domain & host my Web files in Linux 0/s for Free Actually i have a Internet connection, 1 Server Please help me in creating & maintaining websites on my own Server en.kioskea.net/forum/affich-18522-create-own-domain-hosting
How to Create Own Webserver Hello, How to Create Own Web Server? Pls Help Me with Step By Step Configuration..... Thanks....... en.kioskea.net/forum/affich-78477-how-to-create-own-webserver
Create Website from PowerPoint Create a website with PowerPoint? You may think downright impossible. But what I what to say is that of course you can. Everyone can create a website with PowerPoint unless you donâ??t know how to use PowerPoint. So if this is possible, who can... en.kioskea.net/forum/affich-25768-create-website-from-powerpoint
Publish a PDF file on your websitePublish a PDF file on your Website Proposing a PDF link on your own website is an operation that can seem quite easy if you are a professional webmaster and know how to effectively use HTML tags. For beginners in HTML, a PDF file can be... en.kioskea.net/faq/sujet-569-publish-a-pdf-file-on-your-website
Creating an Autorun.inf fileCreating an Autorun file Allowing autorun Creating an Autorun.inf file Variations Customizing the icon Customizing the icon text Customizing the icon menu Allowing autorun Windows provide users with simple utility that runs... en.kioskea.net/faq/sujet-641-creating-an-autorun-inf-file
[Web positioning]Points to consider when creating your Website[Web positioning]Points to consider when creating your Website Getting started The Fundamentals Testing Online Making a web site, it is strongly advised to consider at creation stage, the referencing of your website by search... en.kioskea.net/faq/sujet-1422-web-positioning-points-to-consider-when-creating-your-website
Hosting my own domain?I'm gonna do the big jump.. I'm setting up my own servers for educational and convenience use. I have a few static IP's and about 5 servers. What I'd like to do is hosting my websites on one server and have a primary and secondary DNS server, which... en.kioskea.net/forum/affich-419-hosting-my-own-domain
Sharing: How to make a video sharing websiteYouTube is a magic thing to me. It only depends on the video sharing to create so terrific rank of 3 in all the websites in the world: what is it & how to design it. I have always doubted about this. In this article I'll try to describe this issue in... en.kioskea.net/forum/affich-37340-sharing-how-to-make-a-video-sharing-website
HOW TO MAKE OWN FORUMHello, Hello,i am sunny and i want to ask experts that how can we desingn and creat or own forums for online games AND IT SHOULD BE PRIVATE.please talk on this topic in details.......thanks en.kioskea.net/forum/affich-79081-how-to-make-own-forum
Download Traction CD Menu CreatorThis application allows you to create your own menu for your CD compilations. The program offers a tabbed interface, support for drag and drop, simple techniques for adding and deleting tabs and files, and a quick wizard to help you in your steps. It... en.kioskea.net/telecharger/telecharger-3567-traction-cd-menu-creator
Download PDF CreatorSupports Windows 7 Beta PDFCreator is a free tool to create PDF files from almost any application that can print. It also possesses options of security allowing to code the PDF to protect their reading. PDF Creator also allows to create images... en.kioskea.net/telecharger/telecharger-40-pdf-creator
Download The Logo CreatorDescription The logo creator was designed by Laughingbird Software Groups. The application is based on the creation of logos. Also, the application is available for everyone; no knowledge requirements needed to use it. Logo Creator is simple and... en.kioskea.net/telecharger/telecharger-836-the-logo-creator
Web Creator 3 ProfessionalDo you wish to develop your business and find new customers? Then building your window shop online is a powerful asset! With Web Creator 3 Pro no programming or coding required. You can create your website straight away ... en.kioskea.net/guide/630414819-web-creator-3-professional
Adobe Creative Suite 4 Web Premium - Complete package - 1 user - EDU - DVD - Mac - International EngCreate the full range of digital experiences, including interactive websites, applications, user interfaces, presentations, and mobile device content, with Adobe Creative Suite 4 Web Premium software. Bring your creativity to life with technology... en.kioskea.net/guide/629385681-adobe-creative-suite-4-web-premium-complete-package-1-user-edu-dvd-mac-international-english
Write Your Own Novel - ProfessionalAlways wanted to write your own novel but didn’t know where to start? Well with Write your own Novel Professional you’ll have everything you need to create a masterpiece. Easy-to-use This easy-to-use program will give yo... en.kioskea.net/guide/630415253-write-your-own-novel-professional
Creating a local area networkWhy set up a local area network? When you have several computers, it can be convenient to connect them to each other to create a local area network (LAN). Setting up such a network costs very little, contrary to what people may think. Here are a... en.kioskea.net/contents/configuration-reseau/creer-reseau-local.php3
Creating a LANWhy set up a LAN? If you have several computers, it may be worthwhile to connect them in order to create a local area network (LAN). Setting up such a network is much less expensive than what you might think. Here are a few ways you might benefit... en.kioskea.net/contents/pratique/lan.php3
Webmastering - Introduction to Webpage CreationWebsites A website (also called an Internet site) is a group of HTML files connected by hypertext links and stored on a web server, i.e. a computer that hosts webpages and is permanently connected to the Internet. Why Have a Website? There are... en.kioskea.net/contents/web/webintro.php3