HEADING IN HTML Click to Watch the video Headings help in defining the hierarchy and the structure of the web page content. HTML offers six levels of heading tags, <h1> through <h6> ; the higher the heading level number, the greater its importance — therefore <h1> tag defines the most important heading, whereas the <h6> tag defines the least important heading in the document. HTML defines six levels of headings . A heading element implies all the font changes, paragraph breaks before and after, and any white space necessary to render the heading . The heading elements are H1, H2, H3, H4, H5, and H6 with H1 being the highest (or most important) level and H6 the least. By default, browsers display headings in larger and bolder font than normal text. Also, <h1> headings are displayed...
The Bubble Tail Animation By using HTML_CSS_JAVASCRIPT Here is the bubble tail Animation, In this code there is a amazing effect of colourfull bubbles which is in form of tail of the mousepointer. As the pointer moves the bubble create and disappear again. The code is not so complex just watch the video and do it. It will grate experience for you. CODE - <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Sketch.js Flare animation</title> <script src="https://rawgithub.com/soulwire/sketch.js/master/js/sketch.min.js"></script> <style> body{ ...
How to generate random captcha || JAVASCRIPT techinc Here, you will going to teach how to generate random captcha by javascript #CODE: <!DOCTYPE html> <html> <head> <title></title> </head> <body> <canvas width=150 height=70 style="border:1px solid black;"></canvas><br> <button style="width:150px; height:40px; color: red; -webkit-tap-highlight-color:rgba(0,0,0,0);" onclick="generateCaptcha()">Generate Captcha</button> <style type="text/css"> body{ ...
Comments
Post a Comment