Posts

Showing posts with the label chatGPT

AI In Your Digital Marketing Strategy

https://www.score.org/event/how-use-ai-in-digital-marketing-strategy

How Can You Get Text to Glow and Dim Continuously?

To create a continuous Glowing Text animation using HTML and CSS, follow these steps: Add the following HTML code wherever you want the text to appear: <span class="glow-effect">Glowing Text</span> Add the following CSS code within a <style> tag or in your CSS file: (NOTE: click on code to select) .glow-effect { font-size: 24px; animation: glow 2s infinite; } @keyframes glow { 0% { text-shadow: 0 0 5px #ff0000; } 50% { text-shadow: 0 0 20px #ff0000; } 100% { text-shadow: 0 0 5px #ff0000; } } That's it! The text with the class "glow-effect" will now have a continuous glowing animation, with the glow effect fading in and out every 2 seconds.

What Do You Need for a Beating Heart Effect In Your Text?

To create a beating heart effect in HTML and CSS, follow these steps: Add the following HTML code wherever you want the heart to appear: <span style="font-size: 24px; animation: heartbeat 2s infinite;">❤</span> Copy Code Add the following CSS code within a <style> tag or in your CSS file: (NOTE: click to select) @keyframes heartbeat { 0% { font-size: 24px; } 50% { font-size: 32px; } 100% { font-size: 24px; } } That's it! The heart symbol (<span> with the content ❤ ) will now be displayed with a beating effect, growing and shrinking continuously every 2 seconds.

An All Time Classic (Duke Coursera Javascript Paint Tool)

Image
This one is not as easy as the To Do list exercise. But, boy am I proud. If you want to do even the teeniest bit of web hacking, I'd recommend doing this one every few weeks to maintain your cognitive savvy! I added a feature - adding text to the canvas - all the controls you see to the right of the canvas are my invention :) That was fun :)  https://codepen.io/chipdesigner/pen/oNPEWVZ FYI, the text controls you see on the right of the canvas, I wasn't able to put the other controls - Brush color and size below the canvas without this tip :  html - arranging div one below the other - Stack Overflow . Go figure..

When chatGPT Doesn't Deliver (how to add a tooltip to a link on a blogspot post)

How do you add a wikipedia style tooltip to a link in a blogger blog post? From the oracle : To add a Wikipedia-style tooltip to a link in a Blogger blog post, you can use a JavaScript library called "Opentip". Here are the steps to do it: First, you need to add the Opentip JavaScript library to your Blogger blog. You can do this by adding the following code to the HTML of your blog template, just before the </head> tag: html Copy code < script src = "https://cdnjs.cloudflare.com/ajax/libs/opentip/2.4.6/opentip-native.min.js" > </ script > < link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/opentip/2.4.6/opentip-native.min.css" > Next, you need to add a class to the links that you want to add the tooltip to. You can do this by adding the following code to the HTML of your blog post: html Copy code < a href = "#" class = "tooltip" data-ot = "Tooltip text" > Li...