Frontend & Web Dev, Marketing, SEO, GEO | HI Web
15.2K subscribers
581 photos
17 videos
51 files
196 links
• Guides on HTML, CSS, JavaScript, React
• Free Figma templates
• Tips on UI/UX design
• Career advice
• Portfolio tips, GitHub help, and soft skills for devs
• Live projects, coding challenges, tools, and more

For all inquiries contact @haterobots
Download Telegram
“If” CSS Gets Inline Conditionals

All of this is conceptual at the moment and nothing is set in stone. We’re likely to see things change as the CSSWG works on the feature. But as it currently stands, the idea seems to revolve around specifying a condition, and setting one of two declared styles — one as the “default” style, and one as the “updated” style when a match occurs.
👍12🤔1
Free Figma Template: Tatoo

🧠 Difficulty: 🥕🥕

#Figma #Template
👍6🔥31
⚡️ TypeScript and Everything You Need for Development

This article is designed to simplify the process of learning TypeScript through practical examples. You can always find more detailed information in the documentation or additional resources.

This article is suitable for both beginner developers who are just getting acquainted with TypeScript and experienced developers looking to deepen their knowledge of the language. Here, you will find a concise and informative overview of the key aspects of TypeScript that can be useful in day-to-day development. For your convenience, the table of contents includes links to specific TypeScript topics, allowing you to quickly jump to the parts of the material that interest you.
🔥5👍1
Free Figma Template: Cosmetics store

🧠 Difficulty: 🥕🥕🥕

#Figma #Template
👍105
🔥 I highly recommend using this awesome service to create a high-quality resume!

We all know how important it is to have a professionally crafted resume. It’s truly the key to landing your dream job.

💼 I found a great service that helps you highlight your achievements, experience, and skills in the best possible way. If you want a resume that stands out from the crowd, this is the way to go.

🎁 I have negotiated a special discount just for my subscribers.
Use this promo code 👇 to get a 20% discount on your order.

HiWeb


Don’t miss out on the chance to boost your chances of getting that job — your resume matters!
🤩9👍51🔥1
Free Figma Template: Criminal justice

🧠 Difficulty: 🥕🥕

#Figma #Template
9👍5
🍐 Embla Carousel — a lightweight JS library for creating carousels

Embla Carousel is a dependency-free lightweight JS library. It will help you solve the most complex problems associated with creating carousels; it has an easily extensible API and plugins.

Embla Carousel works in all modern browsers.
👍10🔥3
🥕 Providing Type Definitions for CSS with @property

A cross-browser feature as of the release of Firefox 128 in July 2024 is a new at-rule - @property - which allows defining types as well as inheritance and an initial value for your custom properties.

We'll learn when and why traditional fallback values can fail, and how @property features allow us to write safer, more resilient CSS custom property definitions.
👍6🔥1
Free Figma Template: Product page

🧠 Difficulty: 🥕🥕

#Figma #Template
👍82
This media is not supported in your browser
VIEW IN TELEGRAM
🧵Creating an animated background in text

To create a beautiful background for text, use the background-image property, which takes a value in the form of a photo, or a link to any photo or video via url()

color: transparent — makes the text transparent. This is necessary so that the text is visible only due to the background image.

-moz-background-clip and -webkit-background-clip are special properties for other browsers that limit the display of the background image to the text area only.

h1 {
font-family: sans-serif;
text-align: center;
font-size: 80px;
font-weight: 800;
text-transform: uppercase;
background-image: url(https://i.giphy.com/media/v1.Y2lkPTc5MGI3NjExYTlmN2h0MnhhNHFqcDFwaWYxMXd0NjlrZTE0NDBoY3N0M2hiNnY5ayZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/XQsEy59pNgaVu6QlGi/giphy-downsized-large.gif);
background-size: cover;
color: transparent;
-moz-background-clip: text;
-webkit-background-clip: text;
}
👍15🔥32
This media is not supported in your browser
VIEW IN TELEGRAM
🚤 How to choose the best rendering strategy for your app

Web rendering has evolved from simple server-rendered HTML pages to highly interactive and dynamic applications, and there are more ways than ever to present your app to users.

Static Site Generation (SSG), Server-Side Rendering (SSR), Client-Side Rendering (CSR), Incremental Static Regeneration (ISR), and experimental Partial Prerendering (PPR) have all been developed to optimize performance, SEO, and user experience in various situations.

Here, we'll explore the use cases and tradeoffs of each rendering strategy and peek into the future of content delivery.
👍5🤯2
Free Figma Template: Agency

🧠 Difficulty: 🥕🥕🥕

#Figma #Template
👍85
This media is not supported in your browser
VIEW IN TELEGRAM
📒 Scroll animation with typography

Experiment with animation with the appearance of an image in the text when scrolling.
17👍1
🧠 CSS font-size-adjust is now in Baseline

The CSS font-size-adjust property lands in Chrome today, and becomes part of Baseline Newly Available. This property can help prevent shifting of your layout when fallback fonts are loaded, and ensure legibility of fallback fonts at smaller font sizes. The font-size-adjust property is part of Interop 2024, so this is another win for the effort to improve the interoperability of the web platform.
6🔥3👍1
Free Figma Template: SaaS

🧠 Difficulty: 🥕🥕🥕

#Figma #Template
👍7🔥43
This media is not supported in your browser
VIEW IN TELEGRAM
👁 Paroller.js is a lightweight jQuery plugin that enables parallax scrolling effect on selected elements.

You can use it on elements with background property or on any other element.
While scrolling elements can move: vertical, horizontal.
- Manipulated through html data-* attributes or jQuery options.
- Mobile ready.
- Easy to use.
6👍3
🧛‍♂️ How to use container queries now

Some developers say they want to use container queries now but think they can't because they still have to support older browsers.

As you may have guessed from the title, we think it's possible for most developers to use container queries now—in production—even if you have to support older browsers. This post walks you through the approach we recommend to do that.
5👍1
🍪 Demystifying cookies and tokens

In this blog post we will reach and understanding of what web cookies and tokens are and what are they used for. We will also look at the most common types of web cookies and tokens. This post is not going into how to prevent token or cookie abuse. That’s a topic for another post.
👍11