HTML Color Names

HTML Color Names The following 148 color names are supported by all modern browsers. Color Name HEX AliceBlue #F0F8FF AntiqueWhite #FAEBD7 Aqua #00FFFF Aquamarine #7FFFD4 Azure #F0FFFF Beige #F5F5DC Bisque #FFE4C4 Black #000000 BlanchedAlmond #FFEBCD Blue #0000FF BlueViolet #8A2BE2 Brown #A52A2A BurlyWood #DEB887 CadetBlue #5F9EA0 Chartreuse #7FFF00 Chocolate #D2691E Coral #FF7F50 CornflowerBlue #6495ED Cornsilk #FFF8DC … Read more

HTML5 Web Workers

A separate JavaScript code that runs in the background of a web page is called the Web Workers in HTML. It does not affect the user interface. They are the multithreaded object. Multiple JavaScript is executed in parallel but the performance of the application or webpage is not affected. Key features of the Web Workers: … Read more

HTML5 Migration

To define a way to migrate from HTML 4 to HTML5, the HTML 5 migration is used. Table: To convert an HTML 4 page into an HTML 5 page without any trouble in content or structure. In HTML4 In HTML5 <div id=”header”> <header> <div id=”menu”> <nav> <div id=”content”> <section> <div class=”article”> <article> <div id=”footer”> <footer> … Read more