+ Reply to Thread
Page 1 of 2 12 LastLast
Results 1 to 10 of 19

Thread: Web Designing Languages

  1. #1
    gihanchanaka is offline x10Hosting Member gihanchanaka is an unknown quantity at this point
    Join Date
    Apr 2010
    Posts
    12

    Exclamation Web Designing Languages

    Is there any other possible language to make web pages other than HTML or XML??

  2. #2
    bhupendra2895's Avatar
    bhupendra2895 is offline x10 Elder bhupendra2895 is an unknown quantity at this point
    Join Date
    Jun 2010
    Location
    India
    Posts
    554

    Re: Web Designing Languages

    Quote Originally Posted by gihanchanaka View Post
    Is there any other possible language to make web pages other than HTML or XML??
    Since you posted this in graphics and webdesign how can you forget CSS.I don't know any, it is xml which is being used everywhere, thanks to its extensibility.
    Liked this? Click on the icon on the bottom of post to make me .

  3. #3
    lemon-tree's Avatar
    lemon-tree is offline x10 Minion lemon-tree has a spectacular aura about
    Join Date
    Nov 2007
    Posts
    1,420

    Re: Web Designing Languages

    You could use Flash, but I seriously don't recommend it as:
    1. It is slow and clunky for some users (Mac).
    2. CSS and HTML can do pretty much everything just as well in terms of design.
    Basically, it's best to stick to HTML and CSS.

  4. #4
    callumacrae's Avatar
    callumacrae is offline not alex mac callumacrae is just really nice
    Join Date
    Dec 2007
    Location
    Wellesbourne, England
    Posts
    5,162

    Re: Web Designing Languages

    Quote Originally Posted by lemon-tree View Post
    You could use Flash, but I seriously don't recommend it as:
    1. It is slow and clunky for some users (Mac).
    2. CSS and HTML can do pretty much everything just as well in terms of design.
    Basically, it's best to stick to HTML and CSS.
    Adding to what lemon-tree said, use javascript - it can do everything flash does

    ~Callum
    I can customise your phpBB board. Send me a PM.
    lynxphp - info, tutorials and scripts
    "A forum post should be like a skirt; long enough to cover the subject but short enough to keep things interesting."

  5. #5
    walidno1 is offline x10 Lieutenant walidno1 is an unknown quantity at this point
    Join Date
    Oct 2007
    Location
    Bangladesh
    Posts
    351

    Re: Web Designing Languages

    This is the thing.........

    HTML and CSS---for normal websites with little visual effects but enough to make a very good professional site
    Javascript: script language for the client side effects........add loads of visual effects, doesn't hamper ur SEO rating that much and such
    PHP and MY SQL: allow server side effects.......process data that has been sent by users, save data etc.

    Using these 4 script languages, u can make almost any site u wud want.........once u master javascript/php, learning the other languages get pretty easy!!
    visit my website as a sign of appreciation :D
    Get professional logos designed FOR FREE!!!

    link:http://www.myriad.x10hosting.com

  6. #6
    gihanchanaka is offline x10Hosting Member gihanchanaka is an unknown quantity at this point
    Join Date
    Apr 2010
    Posts
    12

    Re: Web Designing Languages

    I was asking about the languages we can use instead of HTML

  7. #7
    leafypiggy's Avatar
    leafypiggy is offline Community Advocate leafypiggy is on a distinguished road
    Join Date
    Aug 2007
    Location
    Massachusetts
    Posts
    2,228
    XHTML, asp.net (I guess), JSP (x10 doesn't have tomcat support), and that's about all I can think of..

    But I'm pretty sure asp.net uses XHTML, and idk about JSP..

    Btw: you shouldn't be using HTML or XML. XHTML is the only one currently fully supported. In a few years, It will be the only language acceptable for websites. HTML and XML are gone.. Also: you could go the HTML5 route, but it's only really useful for iPhone web apps..
    Neil Hanlon | x10Hosting Support Representative
    Neil[at]x10hosting.com
    █ I'm always happy to help. Just ask a question in Free Hosting
    Terms of Service IRC

  8. #8
    galaxyAbstractor's Avatar
    galaxyAbstractor is offline Community Advocate galaxyAbstractor is on a distinguished road
    Join Date
    Oct 2007
    Location
    Land of Null and Insanity
    Posts
    5,495

    Re: Web Designing Languages

    Quote Originally Posted by leafypiggy View Post
    XHTML, asp.net (I guess), JSP (x10 doesn't have tomcat support), and that's about all I can think of..

    But I'm pretty sure asp.net uses XHTML, and idk about JSP..

    Btw: you shouldn't be using HTML or XML. XHTML is the only one currently fully supported. In a few years, It will be the only language acceptable for websites. HTML and XML are gone.. Also: you could go the HTML5 route, but it's only really useful for iPhone web apps..
    asp.net and JSP both outputs (x)HTML, as does PHP
    Last edited by galaxyAbstractor; 06-30-2010 at 10:53 AM.

  9. #9
    essellar's Avatar
    essellar is offline Community Advocate essellar has a spectacular aura about
    Join Date
    Feb 2010
    Location
    Toronto, Ontario, CA
    Posts
    1,152

    Re: Web Designing Languages

    Quote Originally Posted by leafypiggy View Post
    Btw: you shouldn't be using HTML or XML. XHTML is the only one currently fully supported. In a few years, It will be the only language acceptable for websites. HTML and XML are gone.. Also: you could go the HTML5 route, but it's only really useful for iPhone web apps..
    Not quite. XHTML is what is "gone". While it is acceptable to use XHTML 1.0, it is really just a transitional type since it uses the "text/html" MIME type and normal HTML form handling. XHTML 1.1 was never fully supported, and XHTML 2.0 is a dead end that will never be fully implemented. (There are intractable problems with document representation in "pure" XML, such as the fact that there is no particular reason why one paragraph should appear before another since both are siblings of equal status in the XML data document.) XHTML's successor is (X)HTML 5. (XHTML 5 is a markup-only variant requiring that all tags, including unary tags like BR and IMG, be closed.)

    I'm not really sure that server-side development languages are germaine to the question, since their purpose is to create (X)HTML, bringing us back to the original question.

    If the OP's purpose in life is to avoid learning HTML, then using a CMS like Wordpress, Joomla or Django might be a way around the hard parts. At their most basic (and with the right template) they are not that much different from using a word processor. The result, in any case, will either be (X)HTML, SVG (an XML dialect) or Flash hosted on an (X)HTML page. HTML is the core of the web -- there's no way to escape it without building a new client.
    “Beware of bugs in the above code; I have only proved it correct, not tried it.” --Donald Knuth
    "It was as if its architects were given a perfectly good hammer and gleefully replied, 'neat! With this hammer, we can build a tool that can pound in nails.'" -- Alex Papadimoulis (on TheDailyWTF.com)

  10. #10
    leafypiggy's Avatar
    leafypiggy is offline Community Advocate leafypiggy is on a distinguished road
    Join Date
    Aug 2007
    Location
    Massachusetts
    Posts
    2,228

    Re: Web Designing Languages

    Sorry, should have said XHTML 1.1 or XHTML 5.

    I use XHTML1.1 Strict... and it's pretty much accepted.. it just hates my form elements. :P
    Neil Hanlon | x10Hosting Support Representative
    Neil[at]x10hosting.com
    █ I'm always happy to help. Just ask a question in Free Hosting
    Terms of Service IRC

+ Reply to Thread
Page 1 of 2 12 LastLast

Similar Threads

  1. Your Web Designing Applications
    By Franc0 in forum Graphics & Webdesign
    Replies: 40
    Last Post: 07-19-2010, 07:51 PM
  2. Need Help Designing Website
    By mrkgg in forum Graphics & Webdesign
    Replies: 1
    Last Post: 01-24-2010, 10:13 PM
  3. [REQ] Banner Designing
    By kajasweb in forum The Marketplace
    Replies: 2
    Last Post: 01-11-2008, 02:49 AM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
x10hosting free hosting for the masses
dedicated servers