If you like SEOmastering Forum, you can support it by - BTC: bc1qppjcl3c2cyjazy6lepmrv3fh6ke9mxs7zpfky0 , TRC20 and more...

 

CSS & HTML

Started by CryBaby, 06-29-2010, 10:59:47

Previous topic - Next topic

CryBabyTopic starter

CSS & HTML
Hi to all community members,
I've got some questions to you all.
Is there any differences between CSS & HTML?
What are those differences?
Which one gives you more advantages?
Which one is simpler?
  •  


Charlesth

HTML is used to create web page structure, it is builds the actual elements on webpage like text, tables, divisions, links, images, etc... while CSS is used to present HTML better  by adding colours, borders,
Simply we can say that HTML create structure of a web page and CSS is use to add visual designing impact on page that make it attractive and stylish.
  •  

kiash001

HTML (hypertext markup language) is a mark up language. We use it to mark up or wrap text or contents and CSS (Cascading Style Sheets) is a styling language, we use it to styling text or contents. Both languages are different but related to each other. If you want to design a website than you need to learn both languages.


MarcoLeitner

there are few difference between CSS and HTMl:
1. Html is a markup language for  describing the structure of a webpage where as Css is a language for describing the presentation of the webpage.
2.There are predefined tags for writting html code and this code is written in open and close brackets where as no predefined tags are available for Css.
3.Html allow you to put video,text and other piece of content in a webpage where as css allow us to  edit font, size ,color in a webpage.

SanviMalhotra

1. HTML is the language for describing the structure of Web pages where as CSS is the language for describing the presentation of Web pages, including colors, layout, and fonts.

2.It is simply a format that allows you to specify certain ways to display information on a page where as CSS is used on a website to make the design.

Shikha Singh

HTML (the Hypertext Markup Language) and CSS (Cascading Style Sheets) are two of the core technologies for building Web pages. HTML provides the structure of the page, CSS the (visual and aural) layout, for a variety of devices.

<html>
<head>
  <title>My Title</title>
</head>
<body>
  <p>Hello World</p>
</body>
</html>

Cascading Style Sheets (CSS) is a style sheet language used for describing the presentation of a dоcument written in a markup language.



If you like SEOmastering Forum, you can support it by - BTC: bc1qppjcl3c2cyjazy6lepmrv3fh6ke9mxs7zpfky0 , TRC20 and more...