Mrunay Uttarwar Profile picture
19 | Tweets about Python, HTML, CSS, Javascript πŸ•ΈοΈ | Frontend Developer and Content Creator | Building a community | Love to read booksπŸ“– | @Alchemylearn
2 subscribers
Nov 9, 2022 β€’ 11 tweets β€’ 4 min read
πŸ”· 5 Things You Need To Know About <input> Tag

A Thread🧡 πŸ‘‡ Image 1️⃣ Focus

β†’ The :focus selector comes into action when we click the input element and we can type content in the input field.

β†’ Suppose we don't have a border in our <input> tag, we can implement this using: Image
Nov 6, 2022 β€’ 9 tweets β€’ 3 min read
πŸ”· CSS Libraries For Beautiful Image Hover Effects

A Thread🧡 πŸ‘‡ Image πŸ“Œ Image Hover Effects

β†’ In this page you will find a nice collection of 16 hover images effects with captions.

β†’ Grab the HTML and CSS code for each effect by hovering over the images, then clicking Show Code.

πŸ”— github.com/miketricking/b…
Oct 30, 2022 β€’ 9 tweets β€’ 2 min read
πŸ”· About HTML Geolocation API - 2

A Thread🧡 πŸ‘‡ πŸ“Œ Handling Errors and Rejections

β†’ The second parameter of the getCurrentPosition() method is used to handle errors.

It specifies a function to run if it fails to get the user's location.
Oct 29, 2022 β€’ 9 tweets β€’ 2 min read
πŸ”· About HTML Geolocation API - 1

A Thread🧡 πŸ‘‡ πŸ“Œ HTML Geolocation API

β†’ The HTML Geolocation API is used to locate a user's position.

♦️ Locate the user's position

β†’ The HTML Geolocation API is used to get the geographical position of a user.
Oct 28, 2022 β€’ 8 tweets β€’ 3 min read
πŸ”· 5 Free Websites For Hosting Your Websites

A Thread🧡 πŸ‘‡ Image πŸ“Œ Firebase Hosting

πŸ”— firebase.google.com/docs/hosting

β†’ A personal favorite of mine! Preety easy to setup with its CLI.
Oct 27, 2022 β€’ 10 tweets β€’ 2 min read
πŸ”· About HTML HTTP Request Methods - 2

A Thread🧡 πŸ‘‡ 3️⃣ PUT

β†’ PUT is used to send data to a server to create/update a resource.

β†’ The difference between POST and PUT is that PUT requests are idempotent.

β†’ That is, calling the same PUT request multiple times will always produce the same result.
Oct 26, 2022 β€’ 10 tweets β€’ 2 min read
πŸ”· About HTML HTTP Request Methods - 1

A Thread🧡 πŸ‘‡ πŸ“Œ What is HTTP?

β†’ The Hypertext Transfer Protocol (HTTP) is designed to enable communications between clients and servers.

β†’ HTTP works as a request-response protocol between a client and server.
Oct 25, 2022 β€’ 9 tweets β€’ 3 min read
πŸ”· Tools To Add Wow Factor To Your Website

A Thread🧡 πŸ‘‡ πŸ“Œ Framer Motion

πŸ”— framer.com/motion/

β†’ Reactjs Animation library for animate different parts of website according to your discreation.
Oct 23, 2022 β€’ 7 tweets β€’ 2 min read
πŸ”· About HTML Codes

A Thread🧡 πŸ‘‡ πŸ“Œ HTML Codes

β†’ You should always include the lang attribute inside the <html> tag, to declare the language of the Web page.

β†’ This is meant to assist search engines and browsers.

β†’ There are two types of HTML Codes:

1️⃣ Language Codes
2️⃣ Country Codes
Oct 22, 2022 β€’ 8 tweets β€’ 2 min read
πŸ”· Icon Libraries For Web Developers

A Thread🧡 πŸ‘‡ πŸ“Œ Flaticon

flaticon.com
Oct 21, 2022 β€’ 9 tweets β€’ 3 min read
πŸ”· Must Know HTML Features

A Thread🧡 πŸ‘‡ Image πŸ“Œ Document Refresher

β†’ This meta tag refreshes document every 30 seconds. Image
Oct 20, 2022 β€’ 9 tweets β€’ 3 min read
πŸ”· Design Tools For Front-end

A Thread🧡 πŸ‘‡ Image πŸ“Œ An eye-catching design is an effective way to keep the visitors attention.

πŸ“Œ I've compiled some of the most useful tools that will help you to improve your design workflow.
Oct 19, 2022 β€’ 11 tweets β€’ 3 min read
πŸ”· About HTML Plug-ins

A Thread🧡 πŸ‘‡ Image πŸ“Œ HTML Plug-ins

β†’ Plug-ins are computer programs that extend the standard functionality of the browser.

β†’ Plug-ins were designed to be used for many different purposes.
Oct 18, 2022 β€’ 12 tweets β€’ 3 min read
πŸ”· 5 Best Practices For Better HTML Forms

A Thread🧡 πŸ‘‡ Image πŸ“Œ Forms are an essential part of any UI.

πŸ“Œ It can be intimidating to work with HTML forms.

πŸ“Œ They don't only use a few specialised HTML elements; they also blur the barrier between static material and user involvement.
Oct 15, 2022 β€’ 11 tweets β€’ 3 min read
πŸ”· CSS Methodologies You Must Know - 1

A Thread🧡 πŸ‘‡ πŸ“Œ In large, complicated, rapidly-iterated systems, CSS is notoriously difficult to maintain.

πŸ“Œ The lack of a built-in scoping mechanism in CSS is one of the reasons.

πŸ“Œ In CSS, everything is global.
Oct 13, 2022 β€’ 12 tweets β€’ 2 min read
πŸ”· About HTML Media

A Thread🧡 πŸ‘‡ Image πŸ“Œ HTML Multimedia

β†’ Multimedia on the web is sound, music, videos, movies, and animations.

β†’ Multimedia comes in many different formats.

β†’ It can be almost anything you can hear or see, like images, music, sound, videos, records, films, animations, and more.
Oct 4, 2022 β€’ 10 tweets β€’ 2 min read
πŸ”· About HTML Canvas - 2

A Thread🧡 πŸ‘‡ πŸ“Œ Let's see some more examples of HTML Canvas......
Oct 3, 2022 β€’ 9 tweets β€’ 2 min read
πŸ”· About HTML Canvas - 1

A Thread🧡 πŸ‘‡ πŸ“Œ What is HTML Canvas?

β†’ The HTML <canvas> element is used to draw graphics on a web page via JavaScript.

β†’ The <canvas> element is only a container for graphics.

β†’ Canvas has several methods for drawing paths, boxes, circles, text, and adding images.
Sep 2, 2022 β€’ 11 tweets β€’ 2 min read
πŸ”· How To Build Logic In Programming?

A Thread🧡 πŸ‘‡ πŸ“Œ Logic building skills are essential for programmers and if one wishes to be a programmer, he or she needs to keep getting better at developing logic.

πŸ“Œ Complex and sophisticated algorithms require advanced logic in order for programmers to work with them.
Sep 1, 2022 β€’ 11 tweets β€’ 4 min read
πŸ”· 7 Free Games To Learn Programming

A Thread🧡 πŸ‘‡ πŸ“Œ A lot of beginners can become intimidated when they're learning how to code.

πŸ“Œ But learning through coding games can be fun and educational.
Aug 29, 2022 β€’ 8 tweets β€’ 2 min read
πŸ”· CSS Animation Libraries

A Thread🧡 πŸ‘‡ πŸ“Œ If you want to include animation in your designs, animation libraries are an excellent place to start.