HTML: List in reversed order

Add the “reversed” attribute to the “ol” tag The reversed attribute is a boolean attribute.When present, it specifies that the list order should be descending (9,8,7…), instead of ascending (1, 2, 3…). Reference: HTML <ol> reversed Attribute

Basic HTML Meta Tags

<code> <meta charset=’UTF-8′> <meta name=’keywords’ content=’your, tags’> <meta name=’description’ content=’150 words’> <meta name=’subject’ content=’your website’s subject’> <meta name=’copyright’ content=’company name’> <meta name=’language’ content=’ES’> <meta name=’robots’ content=’index,follow’> <meta name=’revised’ content=’Sunday, July 18th, 2010, 5:15 pm’> <meta name=’abstract’ content=”> <meta name=’topic’ content=”> <meta name=’summary’ content=”> <meta name=’Classification’ content=’Business’> <meta name=’author’ content=’name, email@hotmail.com’> <meta name=’designer’ content=”> <meta name=’reply-to’ … Read more

HTML Computer Code Elements

HTML contains several elements for defining user input and computer code. <code> x = 5; y = 6; z = x + y; </code> HTML <kbd> For Keyboard Input The HTML <kbd> element is used to define keyboard input. The content inside is displayed in the browser’s default monospace font. HTML <samp> For Program Output … Read more

How To Remove HTML Tags In PHP & MySQL – Simple Example

To remove HTML tags in PHP, we can either use the strip_tags() or htmlentities() function: The strip_tags() function will remove all HTML tags. For example, $clean = strip_tags(“<p>Foo</p> Bar”); will result in Foo Bar. The htmlentities() function will not remove but convert all symbols into HTML entities. For example,  $clean = htmlentities(“<p>Foo</p>”); will result in &lt;p&gt;Foo&lt;/p&gt; Lastly, we can also create a stored function in MySQL to strip HTML … Read more