●● ELAKIRI WEB DEVELOPERS' CLUB ●●

Jack_Sparrow

Well-known member
  • Jun 16, 2008
    42,525
    1
    16,933
    113
    Black Pearl
    MYSQL ona wenawanee serverside web pages walata :)

    Creating your MySQL Database - Practical Design Tips and Techniques Packt Publishing 2006

    2zpmw48.jpg


    Code:
    http://rapidshare.com/files/286905555/Creatingdata.rar
     

    XenonZ

    Member
    Jan 12, 2009
    2,880
    33
    0
    Colombo , Sri Lanka
    What You Should Already Know

    Before you continue you should have a basic understanding of the following:

    • HTML / XHTML
    What is CSS?


    • CSS stands for Cascading Style Sheets
    • Styles define how to display HTML elements
    • Styles were added to HTML 4.0 to solve a problem
    • External Style Sheets can save a lot of work
    • External Style Sheets are stored in CSS files
    CSS Demo

    An HTML document can be displayed with different styles: http://www.w3schools.com/css/demo_default.htm
    Styles Solved a Big Problem

    HTML was never intended to contain tags for formatting a document.
    HTML was intended to define the content of a document, like:
    <h1>This is a heading</h1>
    <p>This is a paragraph.</p>
    When tags like <font>, and color attributes were added to the HTML 3.2 specification, it started a nightmare for web developers. Development of large web sites, where fonts and color information were added to every single page, became a long and expensive process.
    To solve this problem, the World Wide Web Consortium (W3C) created CSS.
    In HTML 4.0, all formatting could be removed from the HTML document, and stored in a separate CSS file.
    All browsers support CSS today.
    CSS Saves a Lot of Work!

    CSS defines HOW HTML elements are to be displayed.
    Styles are normally saved in external .css files. External style sheets enable you to change the appearance and layout of all the pages in a Web site, just by editing one single file!
     

    Jack_Sparrow

    Well-known member
  • Jun 16, 2008
    42,525
    1
    16,933
    113
    Black Pearl
    macromedia flash mx fast easy web development

    35lu6c2.jpg

    Code:
     	[URL="http://alquz.com/vb/alquz.php?url=http%3A%2F%2Frapidshare.net%2Ffiles%2F193741730%2Fmacromedia_flash_mx_fast___easy_web_development.pdf"] [/URL][url]http://rapidshare.com/files/193741730/macromedia_flash_mx_fast___easy_web_development.pdf[/url]
     

    BLACKLIST_MEMBER

    Well-known member
  • Feb 9, 2008
    37,854
    14,812
    113
    127.0.0.1
    ela ela jacka, machan aluth ebooks ehema thibboth nam godak watinawane.. php wala ehema aluth ewa godak add wela thiyenawa mama hithanne dan. but owa valuable thamai basic danaganna ayata :D thanks for sharing
     

    Jack_Sparrow

    Well-known member
  • Jun 16, 2008
    42,525
    1
    16,933
    113
    Black Pearl
    ela ela jacka, machan aluth ebooks ehema thibboth nam godak watinawane.. php wala ehema aluth ewa godak add wela thiyenawa mama hithanne dan. but owa valuable thamai basic danaganna ayata :D thanks for sharing

    ow ban balanna oni mewa 2006 2007 wage ewa
    mee haddisiye RS hoyanna amarui godak ewa dead linksne :)

    wena then walin bala hari upload karala damu passe :)

    ela ubat balahang ;)
     
    • Like
    Reactions: lakshan000

    ac2000

    Member
    Oct 10, 2008
    34,134
    647
    0
    ලෝකෙ එහා කොනේ
    What is HTML?

    HTML is a language for describing web pages.

    • HTML stands for Hyper Text Markup Language
    • HTML is not a programming language, it is a markup language
    • A markup language is a set of markup tags
    • HTML uses markup tags to describe web pages
    HTML Tags

    HTML markup tags are usually called HTML tags

    • HTML tags are keywords surrounded by angle brackets like <html>
    • HTML tags normally come in pairs like <b> and </b>
    • The first tag in a pair is the start tag, the second tag is the end tag
    • Start and end tags are also called opening tags and closing tags
    HTML Documents = Web Pages

    • HTML documents describe web pages
    • HTML documents contain HTML tags and plain text
    • HTML documents are also called web pages
    The purpose of a web browser (like Internet Explorer or Firefox) is to read HTML documents and display them as web pages.
    The browser does not display the HTML tags, but uses the tags to interpret the content of the page

    Source - w3schools