Posts

Showing posts with the label HTML

Secret HTML TIPS & Tricks

Image
All these tips are implemented by placing the code in an HTML object in your Lectora title. How to Close a Popup Window Automatically As soon as the user clicks on any window other than the popup, the popup closes. Create an HTML object from the Insert toolbar. Then select: Object Type: Other <body onBlur=top.cSlose()> Limitations: You cannot have any clickable item on the popup page. If you do, the popup closes as soon as the user clicks on the item – button, hyperlink, Table of Contents, Menu.   How to Disable Right Mouse Click, Double Clicking, and Dragging Create an HTML object from the Insert toolbar. Then select: Object Type: Other Insert: <body oncontextmenu="return false" onselectstart="return false" ondragstart="return false"> in the Custom HTML field. Secret & Special Javascript Tricks How to Keep the Background Image from Repeating It appears that the easiest way to keep it from repe...

HTML Cheatsheet (A Handy Tool for Web Developers)

Image
HTML Cheatsheet   Keep this cheatsheet handy — it contains the most common HTML tags and their proper syntax. Basic Tags <html></html> Creates an HTML document <head></head> Sets off the title and other information that isn’t displayed on the web page itself <body></body> Sets off the visible portion of the document    Body Attributes <body bgcolor=”pink”> Sets the background color, using name or hex value <body text=”black”> Sets the text color, using name or hex value <body link=”blue”> Sets the color of links, using name or hex value <body vlink=”#ff0000?> Sets the color of followed links, using name or hex value <body alink=”#00ff00?> Sets the color of links on click <body ondragstart=”return false” onselectstart=”return false”> Disallows text selection with the mouse and keyboard    Text Tags <pre></pre> Creates preformatted text <hl></hl> Create...

HTML Color Name & Codes

Image
              Named Color Palette Color Hex Equivalent i White #FFFFFF A Red #FF0000 A Orange #FFA500 A Yellow #FFFF00 A Green #008000 A Blue #0000FF A Purple #800080 A Black #000000 A Alice Blue #A0CE00 A Antique White #FAEBD7 A Aqua #00FFFF ...