1. This website uses cookies. By continuing to use this website you are giving consent to cookies being used.
    For information on cookies and how you can disable them visit our Cookie Usage page.
    Dismiss Notice

HTML & CSS

Discussion in 'Web Development' started by weballures, Sep 9, 2015.

  1. weballures

    weballures New Member

    How to make projects in html and css.I just know about basic html and css can i handle a project.How advance html & css can be.
     
  2. Eugene Wolf

    Eugene Wolf New Member

    Although you can create such projects using just notepad, nobody does that. Usually people use editors. For example you can use Dreamweaver or similar. Among free packages I like Kompozer HTML/CSS editor. I personally use Visual Studio, but it's more complex beast.
     
  3. HTML -

    - HTML stands for Hypertext Markup Language.
    - Hypertext means "text with links in it.
    - "Any time you click on a word that brings you to a new webpage, you've clicked on hypertext!
    - A markup language is a programming language used to make text do more than just sit on a page: it can turn text into images, links, tables, lists, and many more.
    - HTML is the markup language we'll be learning.
    - HTML language define by <> tag .
    - HTML Meta code - <title><head><body>

    HTML Basic Program -

    <html>
    <title>.......</title>
    <head>
    <body>
    .........
    </body>
    </head>
    </html>

    CSS -

    - Make a Designing web page are use CSS.
    - CSS are Cass Cadding Style Sheet.
    -
    Think of it like skin and makeup that covers the bones of HTML. We'll learn HTML first, then worry about CSS in later courses.
    - Internal styling is defined in the <head> section of an HTML page, within a <style> element:

    CSS basic Program -

    <html>
    <head>
    <style>
    body {background-color:lightgrey;}
    h1 {color:blue;}
    p {color:green;}
    </style>
    </head>
    <body>

    <h1>This is a heading</h1>
    <p>This is a paragraph.</p>

    </body>
    </html>