Posts

Showing posts with the label Examples of Global Attributes In HTML

Basic Elements - Learn HTML - Free Interactive HTML Tutorial

Image
Basic Elements The use of basic HTML Tags.. Coding.... <!DOCTYPE html> <html> <head> <title>Example page</title> </head> <body> <h1>Heading 1</h1> <h2>Heading 1</h2> <h3>Heading 1</h3> <h4>Heading 1</h4> <h5>Heading 1</h5> <h6>Heading 1</h6> <p>This is peragraph.</p> <p>Horizontal Line Below</p> <hr /> </body> </html> Output Of Above Code... Output

Examples of Global Attributes In HTML

Image
Examples of Global Attributes In HTML Code Of AccessKey Attribute: <!DOCTYPE html> <html> <body bgcolor="#FF0033"> <center> <a href="https://easycodi.blogspot.com/2019/08/simple-html-tags.html" accesskey="h">HTML</a><br> <a href="https://easycodi.blogspot.com/2019/08/simple-html-tags.html" accesskey="c">CSS</a> <p ><font size="45">The accesskey attribute specifies a shortcut key to activate/focus an element.</p> <p><strong>Note:</strong> The shortcut is varying in different browsers:</p> <ul>     <li>IE, Chrome, Safari, Opera 15+: [ALT] + <em>accesskey</em></li>     <li>Opera prior version 15: [SHIFT] [ESC] + <em>accesskey</em></li>     <li>Firefox: [ALT] [SHIFT] + <em>accesskey</em></li> </ul> </body> ...