Difference between revisions of "HTML to CSS"

From Conservapedia
Jump to navigation Jump to search
m (typo/copy and paste error)
 
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
lolfail, you can't even get a category linked properly
+
The following table is a translation of the features in [[HTML]] and [[CSS]] "coding".
 +
 
 +
{|border=1
 +
|Feature
 +
|HTML
 +
|CSS
 +
|Comment
 +
|----
 +
|bold
 +
|<b></b>
 +
|font-weight: bold;
 +
|
 +
|----
 +
|italic
 +
|<i></i>
 +
|font-style: italic;
 +
|
 +
|----
 +
|underline
 +
|<u></u>
 +
|text-decoration: underline;
 +
|
 +
|----
 +
|center text
 +
|align=center
 +
|text-align: center
 +
|
 +
|----
 +
|background
 +
|bgcolor=#E6D596
 +
|background-color: #E6D596
 +
|Do not use quotes around hex codes here!
 +
|----
 +
|capitalize words
 +
|
 +
|text-transform:capitalize;
 +
|
 +
|----
 +
|}
 +
 
 +
 
 +
[[Category:Computer tips]]

Latest revision as of 02:51, June 7, 2016

The following table is a translation of the features in HTML and CSS "coding".

Feature HTML CSS Comment
bold <b></b> font-weight: bold;
italic <i></i> font-style: italic;
underline <u></u> text-decoration: underline;
center text align=center text-align: center
background bgcolor=#E6D596 background-color: #E6D596 Do not use quotes around hex codes here!
capitalize words text-transform:capitalize;