Username:

Password:

Pages: [1] 2 3 ... 5

Author Topic: What is the difference between HTML and CSS?  (Read 3343 times)

rockstar1234

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 45
What is the difference between HTML and CSS?
« on: October 09, 2010, 07:17:22 AM »
HTML (Hyper Text Markup Language) is a widely accepted web-design language.
HTML is responsible for the construction, and the total output, of a page.
There are three "sections" of a decent HTML document source: Inline, Internal, and External.
Inline markup goes in the <body> tag, and defines the webpage's base layout. It structures the output of a webpage, such as creating tables and divisions (And the data in them), forms and buttons, links (And anchors), or even just normal text and images (And videos, flash documents, etc). Inline markup is not generally used to decorate the page with colors and borders, as these methods are usually deprecated. HTML should be used to create the structure of a webpage - Not decorate it with borders, lines, and colors (Although it's possible).
Internal markup goes in the <head> tag (Excluding DtD's, which go in the first line of a document, etc). Most of the time, users do not directly see anything in internal markup (With the exception of something such as the <title> of a page). Internal markup can declare some special things about a page that the user won't notice, such as the Character Set Declaration, the Document Type Declaration, and keywords (For search engine purposes) to that webpage.
Multi-web-language documents need to use Internal markup to link the multiple languages together (Like CSS and JavaScript), so in a way, Internal markup is also used for decorating, aligning (etc), and making dynamic things, out of Inline markup.
External markup is markup (Of any language) not contained in the HTML document, but in a different file. The contents of this file, to retrieve the markup, can usually be called by Internal Markup. External markup could effect the webpage in vast variety of ways.
CSS (Cascading Style Sheets) is another widely-accepted web-design language.
Unlike HTML, CSS does not "create" anything. Instead, it decorates, aligns, and positions (etc) elements in HTML. In a nutshell, CSS takes the normal HTML output and adds a few rules to how it's actually displayed.
CSS can edit things such as element width and height, background color, border, alignment, and actual visibility, for starters. HTML is capable of doing some of these things, but as mentioned earlier, the methods are usually deprecated, or are soon to be deprecated.
CSS is incorporated into a webpage using Internal markup (In the <head>; in <style> tags) or external markup (From a ".css" file).




__________________
online bingo
Roulette
Logged

sindwocbeery

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 4
Re: What is the difference between HTML and CSS?
« Reply #1 on: November 03, 2010, 07:32:33 AM »
1. HTML or Hypertext Markup Language is the standard and most basic language in use to create web pages.
2. CSS was developed to simplify the code in much bigger pages. This doesn’t mean that CSS cannot be used in simpler and less complex pages. CSS does this by creating custom tags that defines the proper font, size, color, margin, and even the background.

Logged

divinefishen

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 6
Re: What is the difference between HTML and CSS?
« Reply #2 on: November 09, 2010, 10:08:21 AM »
CSS stands for Cascading Style Sheet. It is used to customize the appearance of classes and IDs. He can not control the content of this page. HTML controls the content of this page and some how it is turned off. HTML has a bit of adjustment options, but CSS does most of the work.
Logged

kevinmariya

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 5
Re: What is the difference between HTML and CSS?
« Reply #3 on: November 12, 2010, 11:22:42 PM »
HTML  is the standard and most basic language in use to create web pages.
 It has a very simple code structure that makes it extremely easy to pick-up and learn compared to any other language

Cascading Style Sheets is a style sheet language that can be applied to any XML document. Its purpose is to simplify the styling of certain elements so that the written code would be a lot easier to read.

Logged

karynmonk

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 5
Re: What is the difference between HTML and CSS?
« Reply #4 on: November 26, 2010, 05:15:11 AM »
CSS is Cascading Style Sheet. It is used to customize the appearance of classes and IDs. He can not control the content of the page. HTML controls the content of the page and somehow displayed. HTML has few options for customization, but CSS does most of the work.

alfiealvins

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 3
Re: What is the difference between HTML and CSS?
« Reply #5 on: November 29, 2010, 02:37:51 PM »
HTML is Hypertext Markup Language.While CSS is for Cascading style sheet.HTML is to display the web page on the client side.While CSS is used to give consistent and standard design.By using CSS we can give effect to whole site.If we use HTML without CSS it occupies more data.
Logged

dougoakes

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 3
Re: What is the difference between HTML and CSS?
« Reply #6 on: December 07, 2010, 10:18:53 PM »
HTML defines content and structures that content.

CSS changes the way the content is rendered.
Logged

Santosbulus

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 38
Re: What is the difference between HTML and CSS?
« Reply #7 on: December 08, 2010, 01:59:44 AM »
HTML defines elements to be displayed on a web page, and can define how they are displayed.CSS is an enhancement to HTML, so that you can change the way the information that is defined in the HTML looks.CSS would be icing on the HTML cake.

mughees_javed

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 12
Re: What is the difference between HTML and CSS?
« Reply #8 on: December 08, 2010, 10:57:12 AM »
Googling your question would have returned lots of links with an explanation, but here's what I hope to be a simple one (I'll do my best to explain this as best as I can)...

HTML is the markup language that makes a web page. The markup contains elements.

gloriatrstn

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 4
Re: What is the difference between HTML and CSS?
« Reply #9 on: December 13, 2010, 01:00:44 AM »
CSS is simply code in large pages. In case of HTML is a basic and standard language, it is useful for creating web pages. It is very easy language and you can develop web pages in any language with the basic knowledge of html.

eddieanton

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 4
Re: What is the difference between HTML and CSS?
« Reply #10 on: December 18, 2010, 04:35:06 AM »
CSS elements can be edited, such as the width and height, background color, borders, alignment, and the actual visibility, for the start of things. HTML is the ability to do some of these things, but mentioned earlier, these methods are usually out of date, or is about to become obsolete.
Logged

cagemcmillon

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 3
Re: What is the difference between HTML and CSS?
« Reply #11 on: December 20, 2010, 08:25:06 AM »
HTML is use to build a static web-page where CSS is used to provide a design like a colour and other things. It is component. HTML is only used for the normal web-page but CSS is used to mostly for the all the language.     

addisonyesher

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 3
Re: What is the difference between HTML and CSS?
« Reply #12 on: December 29, 2010, 06:39:54 AM »
HTML is primarily responsible for Hypertext Markup Language, used to design the site, and a second CSS is primarily responsible for Cascading Style Sheet, used to give a style object.

arnoldarta

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 3
Re: What is the difference between HTML and CSS?
« Reply #13 on: December 31, 2010, 03:17:48 PM »
HTML is relatively simple with a few keywords that are dedicated to specific format words, sentences or paragraphs. It is also very tolerant of errors that are still showing some results, even when there are errors in the code. CSS is just a tool that has become popular because of its modularity. This makes Web page creation much easier to do and troubleshooting.

milfordrodger

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 4
Re: What is the difference between HTML and CSS?
« Reply #14 on: January 03, 2011, 10:18:11 PM »
HTML is Hypertext Markup Language.While CSS Cascading Style sheet.HTML is to display the Web page on the client CSS side.While design.By used to provide uniform and standard using CSS, we can give effect to all site.i we use HTML without CSS, we need more data.

Pages: [1] 2 3 ... 5