Basic thing that we need to know before creating a web page.

Asked By 20 points N/A Posted on -
qa-featured

Hi!

I want to know what are the easiest software that I can use to create a web page? How do we create web page? Is it difficult to understand? How can I include pictures in this web page? How to post a link? Can you show me how to insert tables like in excel format? What is the functions of JavaScript in creating web pages? How beneficial if I am going to use it in my web pages? What is CSS in web pages? How useful is it in web designing? Thank you very much and have a nice day!

SHARE
Answered By 0 points N/A #165764

Basic thing that we need to know before creating a web page.

qa-featured

Hello Christine!

There are several software that you can use in webpage and website design. You can utilize Notepad to create basic HTML webpages, JavaScript and CSS style sheets. You can also use Visual Studio from Microsoft. Web page is not difficult to understand. You just need to know the basic of fundamentals of programming and how it works. You need to know also the basic data types, functions, controls and objects that is helpful in creating interactive and or dynamic web pages.

Adding tables in your web page is easy you just need to insert the table codes and set its properties. The example code is shown bellow.

….

<body>

<table border = n cellpadding =n cellspacing = n bgcolor=”#000000”>

<tr>

<td colspan = n bgcolor=”#000000”>CONTENT</td>

<tr>

<td>CONTENT</td>

<tr>

<td>CONTENT</td>

</table>

</body>

….

In th above codes illustrated, you have to always insert “<tr>” to notify the webpage to insert it to the next line. “<td>…</td>” contains the cell information. Border attribute will set the thickness of your border. Other attributes where include to modify the appearance of your table.

To post a link use <a href=”specify location of link”>TEXT</a>

Use the image tag <img src=”reference or location of the image”>

JavaScript is use to extend the usage of webpage. This is also an object-oriented language to create dynamic webpages. CSS Style sheet is used to format objects in your webpages.

Related Questions