Log inSign up
Digital Marketing Tips, Tactics & Strategies
628 posts
Digital Marketing Tips, Tactics & Strategies profile banner
@talotics

Digital Marketing Tips, Tactics & Strategies

@talotics
Talotics.com - Digital Online Marketing Tactics from Alan Richardson developer of the free Twitter Client ChatterScan.com - instagram.com/talotics
United Kingdom
DigitalOnlineTactics.com
Joined June 2017
279
Following
786
Followers
RepliesRepliesRepostsRepostsMediaMedia

Log in or sign up for X

See what’s happening and join the conversation

Continue with phone
or
Log in with username or email
Terms·Privacy·Cookies·Accessibility·Ads Info·© 2026 X Corp.
  • @talotics
    Digital Marketing Tips, Tactics & Strategies
    @talotics
    Nov 18, 2022
    Paste in the URL of the tweet you want to convert, then configure the elements to show in the image: source, all the free tools in this roundup work the same way to make it easy to convert tweets to images. Read more 👉 lttr.ai/4yvU #contentmarketing
    Image
    1
  • @talotics
    Digital Marketing Tips, Tactics & Strategies
    @talotics
    Aug 15, 2022
    A list of Tweet To Image WebSites with open source tools created by @ozgrozer, @iqbal_honnur and @drkPrns Read the full article: Tweet To Image WebSites ▸ lttr.ai/0vii #contentmarketing #digitalmarketing #SocialMediaPlatforms #TwitterWebApp
    Image
  • @talotics
    Digital Marketing Tips, Tactics & Strategies
    @talotics
    May 16, 2022
    You can use Tweet Image free online at tweet-image.glitch.me and find more tools in this roundup of tweet to image tools. Read more 👉 lttr.ai/w2Wj #contentmarketing #digitalmarketing #SocialMediaPlatforms #TwitterWebApp
    Image
  • @talotics
    Digital Marketing Tips, Tactics & Strategies
    @talotics
    Apr 22, 2022
    I've just created my own custom online course hosting system, but I know that option isn't open to everyone so I wrote a blog post describing options, how to evaluate providers and how to maintain your course.
    talotics.com
    Experiences of Online Course Hosting
    Experiences with online course hosting services, lessons learned and what needs to change.
  • @talotics
    Digital Marketing Tips, Tactics & Strategies
    @talotics
    Mar 30, 2022
    Image optimisation tips using the img element
    @addyosmani
    Addy Osmani
    @addyosmani
    Mar 30, 2022
    The <img> element now supports lazy-loading, async decoding, Priority Hints and more. I wrote about some of them for the @StackOverflow blog: bit.ly/soimgs. Helpful if optimizing UX & performance.
    In the below code-snippet, aspect ratio is maintained, a modern image format is served at the right size, dimensions are set to reduce CLS and the image is lazy-loaded and async decoded.

<style>
img { max-width: 100%; height: auto; }
</style>


<picture>
  <source sizes="(max-width: 600px) 100vw, 600px" 
          srcset="donuts-1920w.avif 1920w, 
                  donuts-1280w.avif 1280w, 
                  donuts-640w.avif 640w" type="image/avif">
  <source sizes="(max-width: 600px) 100vw, 600px" 
          srcset="donuts-1920w.webp 1920w, 
                  donuts-1280w.webp 1280w, 
                  donuts-640w.webp 640w" type="image/webp">
  <source sizes="(max-width: 600px) 100vw, 600px" 
          srcset="donuts-1920w.jpg 1920w, 
                  donuts-1280w.jpg 1280w, 
                  donuts-640w.jpg 640w" type="image/jpeg">
  
  <img loading="lazy" 
       decoding="async"
       height="1100" 
       width="2000" 
       src="donuts.png" >
</picture>
Advertisement
Advertisement