|
Until you sign up you can't do much. Yes, it's free.
|
|
|
|
|
|
|
 | / / / Viewing Topic
|  |
|
|
|
|
Narfle the Garthok
Dairy Product Addict
Patron
|
different languages, start with the basics CSS/HTML
------- YOU MUST NARFLE THE GARTHOK! Robdude is my LW Wife.
|
|
|
skittybaby
Professional
|
Different scripts.
------- ilovezamyforever(l) http://livewire.myminicity.com
|
|
|
( Anonymous )
|
what do the scripts look like? and why are they different.
|
|
|
scottyrob
Wealthy Hobo
Patron
|
There three different scripting languages... You cant really use one or another because in a way they relly on each other HTML - The backbone of the website. It tell the browser what is on that webpage, what order the items are in and vaguley how it should appear. All webpages are made out of HTML and need to be. You cannot make a webpage without HTML (You can make it on HTML allone if you wanted to..) | Code: | <div id="blq-content"> <div id="hpOptionsBar"> <h2>Customise Your Homepage</h2> <ul> <li><a id="editLink" class="contentLinks" href="#hpEditYourHomePage"><span>Customise your homepage</span></a> </li> <li><a id="setloc" href="/whereilive/yourarea/"><span>Set your location</span></a> </li> <li><a href="/go/homepage/d/int/cust/reset/-/home/set/domestic" id="hpReset"><span>Reset homepage</span></a></li> </ul> | CSS - This is used to format the HTML. CSS Can set items positions, colours, formats and sizes. You will use CSS when you want to change the default page style. | Code: | body{font-family:Verdana, Arial, Helvetica, sans-serif;font-size:11px;background:#50504f url(images/gbck.gif) repeat;} #box{width:800px;background:#fff;margin:20px auto;padding:10px;} | Javascript - "JavaScript is a cross-platform, object-based scripting language developed by Netscape for client and server applications. It is commonly used on web pages to add interactivity and dynamic content such as banner rotation." http://www.2020systems.com/internet-ad-glossary-e-q.html | Code: | <head> <script type="text/javascript"> function detectBrowser() { var browser=navigator.appName; var b_version=navigator.appVersion; var version=parseFloat(b_version); if ((browser=="Netscape"||browser=="Microsoft Internet Explorer") && (version>=4)) { alert("Your browser is good enough!"); } else { alert("It's time to upgrade your browser!"); } } </script> </head> <body onload="detectBrowser()"> </body> | Post edited at 12:50 am on July 25, 2008 by scottyrob
------- Once a Red Bar, Always a Red Bar... Points are for lossers :)
|
|
|
( Anonymous )
|
so HTML= words for the website and CSS= design for the website...in easy words right? what about javascript and PHP?
|
|
|
|
|
( Anonymous )
|
Quote: from scottyrob at 5:50 am on July 25, 2008
.. HTML is needed to create the website.. It places the images, tables, text etc on the page... CSS is then used to format the images, tables and text and where to place them on the page Javascript is mainly used for interaction with the user I.E Image rotation, message boxes, form validation PHP is server side and is used to communicate with the server. The most common use of PHP is for sending contact forms and for interacting with a database. 
im not really getting what javascript and PHP is for? javascript is a menu?
|
|
|
allsmiles
Soothsayer
Ad Free
|
Forget about Javascript and PHP then. They are not used for web design in any significant way, so until you're interested in development you may as well write them out the script.
------- When they leave me, they're all smiles. When they leave you, they're in tears.
|
|
|
( Anonymous )
|
but its good to know just in case. isnt javascript used for a changable menu type of thing?
|
|
12:57 pm on July 30, 2008
|
|
| |
|
|
allsmiles
Soothsayer
Ad Free
|
Javascript's for dynamic content updated clientside. IE, changing how the webpage looks after it's loaded.
------- When they leave me, they're all smiles. When they leave you, they're in tears.
|
|
|
|
|
|
| Looking for something else?
|
|
|
|
|
|
 | / / / Viewing Topic |  |
|