Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any other style types besides CSS for HTML?

Tags:

<style type="text/css">..</style> 

From the above HTML, I think there should be, but I've never seen it, is there?

like image 256
user198729 Avatar asked Jan 15 '10 14:01

user198729


People also ask

How many types of HTML styles are there?

There are 3 ways of implementing style in HTML: Inline Style: In this method, the style attribute is used inside the HTML start tag. Embedded Style: In this method, the style element is used inside the <head> element of the document.

What types of style can you use with HTML?

There are three ways you can use to implement CSS into your HTML: internal, external, and inline styles.

What are 3 ways you can style your HTML code?

These are the three methods of implementing styling information to an HTML document. Inline styles — Using the style attribute in the HTML start tag. Embedded style — Using the <style> element in the head section of the document. External style sheet — Using the <link> element, pointing to an external CSS files.

Is CSS the only style language?

I suppose the correct answer to your question is no, because html includes some basic style elements itself. But CSS is the best way to style your documents and you absolutely should learn and use it. Once you're comfortable using CSS, try using a framework such as Twitter bootstrap to make your life easier.


1 Answers

Netscape 4 (only) supported Javascript Style Sheets.

like image 191
SLaks Avatar answered Oct 08 '22 16:10

SLaks