Automatically translated.View original post

css persoective

# Web Site Writing Basics

# CSS # perspective

CSS Perspective is a feature used to create a 3D space for elements on a web page, determining the distance of the audience from the object, making the elements that are transformed (such as rotation) appear as real as what our eyes see in real life, such as objects that are closer to looking larger than objects that are far away, and affecting the depth of the overall picture. The smaller the perspective, the larger and closer the object looks to our eyes, the clearer the 3D dimension.

Perspective working principle

Create a 3D space:

The perspective property will enable 3D space for the subelements being transformed.

Define spacing:

The value of the perspective is the distance from the user to the Z-plane where the object is.

Effect on vision:

Minor Value: Make an object appear larger when it is near, and it has a distinctive dimension.

Very valuable: The depth effect will look more delicate, the object will look flattened.

Application to Transform:

Perspective is often combined with other CSS features, such as transform: rotateY (), to create the illusion of rotating 3D objects.

Difference between perspective and transform: perspective ()

Perspective (features):

Use with the parent Element to create a 3D space together for all converted child Element.

Transform: perspective () (function):

Use directly with the Element to be converted to determine the depth of the object directly.

Example of use

Code

/ * Assign 3D space to container * / .container {perspective: 1000px; / * Define user spacing * /}

/ * Convert child element to rotate and dimensional * / .child-element {transform: rotateY (30deg); / * element rotation example * /

}

2025/9/7 Edited to

... Read moreการใช้ CSS Perspective เป็นเรื่องสนุกที่ช่วยให้ผมสามารถสร้างมิติให้กับดีไซน์เว็บได้อย่างง่ายดาย โดยเฉพาะเมื่อต้องการให้วัตถุบนหน้าเว็บดูมีความลึกและเคลื่อนไหวเหมือนของจริง สำหรับผู้เริ่มต้น ควรรู้ว่าค่าของ perspective ยิ่งน้อยวัตถุดูจะยิ่งใหญ่และใกล้สายตามากขึ้น แต่ถ้าเพิ่มค่านี้ให้สูงขึ้น วัตถุจะดูเล็กและลึกมากขึ้น เช่นเดียวกับที่สายตาของเรามองเห็นวัตถุในชีวิตจริง อีกเทคนิคหนึ่งที่ผมชอบใช้ร่วมกับ perspective คือ transform: rotateY() ซึ่งช่วยทำให้วัตถุหมุนและแสดงผลได้สามมิติ ตัวอย่างโค้ดอย่างง่ายคือ กำหนด perspective ให้กับ container แล้วใส่ transform กับองค์ประกอบลูก ซึ่งสร้างเอฟเฟกต์ที่น่าทึ่ง ในโปรเจ็กต์ล่าสุด ผมได้ทดลองใช้ perspective ผสมกับ animation iteration count เพื่อทำให้วัตถุเคลื่อนไหวอย่างไม่รู้จบ เพิ่มความมีชีวิตชีวาให้กับหน้าเว็บ นอกจากนี้ยังช่วยให้เว็บดูทันสมัยและน่าสนใจสำหรับผู้ใช้อีกด้วย หากใครสนใจลองนำไปใช้ ผมแนะนำให้เล่นกับค่าของ perspective และมุมการหมุน เพื่อหาค่าที่เหมาะสมที่สุดสำหรับงานของตน เพราะแค่ปรับค่านิดเดียวก็เปลี่ยนความรู้สึกของดีไซน์ได้มากแล้ว

Related posts

My Programming Interest Just Skyrocketed! 🚀
I just discovered something that has made my interest in programming explode to 1000000000000000%! 🤯 🎮 Learning Programming is Like a Game Adventure! From Python, Java, JavaScript, to HTML, there are all kinds of programming languages available, along with systematic topic courses. The learning p
Valder

Valder

2175 likes

A laptop screen displays a customized GitHub profile featuring sections for 'About Me,' 'Tech Stack,' and 'GitHub Stats,' with the overlaid text 'how to spice up your github profile.'
This image explains that creating a GitHub repository with your username allows profile customization. It shows a `README.md` code editor and a preview of a personalized GitHub profile with 'About Me' and 'Tech Stack' sections.
The image highlights the website 'gprm.itsvg.in,' a 'Best Profile Generator.' It shows the website's interface where users can enter their GitHub username to create a modern profile, then copy the generated code.
how to spice up your github profile 🎀
Did you know that if you create a repository on GitHub with the same name as your username, you can customize your GitHub profile? ✨ 1. Make a new GitHub repository and name it the same as your GitHub username. Make sure it’s public and that you add a README.md file in the configuration settin
♡

204 likes

This infographic titled 'CSS PROFILE 101' explains what the CSS Profile is, who needs to submit it for institutional aid from private colleges and scholarship programs, and what financial information it covers, including income, assets, and debts.
🎓💗 College Prep 101 | Chapter 1: CSS Profile 101
If you’ve only heard about FAFSA, here’s something many students don’t find out until it’s too late… Some colleges require the CSS Profile to award institutional financial aid. That means you could miss out on thousands of dollars simply because you didn’t know another application existed. He
Dejah Taylor

Dejah Taylor

1 like

Clean & Responsive Pricing Table UI | HTML + CSS
Build a clean and responsive Pricing Table UI using just HTML & CSS 💻 In this project, we’ll create a 3-column pricing section (Starter / Pro / Team) that looks professional and modern — perfect for showcasing subscription plans or product tiers. This tutorial is part of my #CodeWithAysh
Aysha

Aysha

4 likes

CSS Cheat Sheet
Essential CSS tricks every developer needs! 🔥 Save this for your next project - covers flexbox, grid, animations, and responsive design in one handy reference. Perfect for beginners and pros alike! 💻✨ #CSS #WebDevelopment #Coding #Programming #Developer
EM

EM

4 likes

The title slide for 'CSS ESSENTIALS Part 6 CSS UNITS EXPLAINED' features a graphic of a measuring tape around a 'Content' box, illustrating various CSS units like px, em, %, vw, and vh. It introduces the topic of breaking down CSS units for clarity.
This slide explains 'px (Pixels)' as a fixed sizing unit. It shows examples of 16px and 24px text, detailing that pixels provide predictable, fixed sizes based on screen pixels, ideal for precise control over spacing, icons, or borders.
This slide describes '% (Percentage)' as a unit relative to the parent element. An illustration shows a 'Parent Container (100%)' with a child element set to 'width: 50%'. It's highlighted as great for fluid layouts, scaling elements with their containers.
CSS Units Explained
Mastering CSS units can transform your layouts. Whether you're building pixel-perfect UI or responsive designs, knowing when to use px, %, em, rem, vh, and vw is a game-changer. Let's break them down together in this post! #CSSUnits #LearnCSS #FrontendTips #WebDesignBasics #c
Aysha

Aysha

8 likes

The perfect place for creativity!
Tired of doom scrolling through inauthentic post? I was too! That's why I learned HTML and built my own personal website on Neocities! It's been a very fulfilling and fun experience. From creative freedom to owning my content, I'm sharing why supplementing (or even replacing!) social me
🩷💣BEELZEBABE💣🩷

🩷💣BEELZEBABE💣🩷

2920 likes

The image displays a CSS code snippet explaining the `background` shorthand property. It shows how `#000` corresponds to `background-color`, `url("img/test.jpg")` to `background-image`, `no-repeat` to `background-repeat`, and `center` to `background-position` using arrows.
Curious trick of the day 😉🫡
#programming #developer #website #CSS #lemon8diarychallenge
Feibertord ⚡️

Feibertord ⚡️

17 likes

A laptop screen displays a VS Code interface with HTML code. A "VS CODE PETS" section shows a cat and a dog. The image has an overlay text "extensions to girlify your vs code setup", suggesting a customization guide.
A VS Code interface is shown with a dark theme and standard file icons, displaying HTML code. An overlay text asks, "tired of your vs code looking like this?", implying this is a default or uncustomized setup.
This image lists four VS Code extensions: Kawaii Theme, Celestial Magic Girl Icon Theme, vscode-pets, and Bongo Cat. Each entry includes a brief description and options to enable or uninstall, showcasing customization options.
extensions to girlify your vs code setup 💻🌸
Is your VS Code looking boring? Here are 4 cute extensions to add to make your workspace cute! 🎀 Kawaii Theme — Cute dark mode theme with purple and pink accents! If you love cute pink themes, but don’t want to code in light mode, this is a great alternative! 🎀 Celestial Magic Girl Icon Theme
♡

1290 likes

An introductory image for Day 19 of 'HTML + CSS IN ACTION: 30 Days of Mini Projects', featuring a responsive navbar with 'About', 'Services', 'Portfolio', and 'More' dropdown options, emphasizing its adaptability from desktop to mobile.
An image defining a responsive navbar, showing a mobile menu with a 'CodeWithAysha' logo and a dropdown list including 'Our Services' with sub-items like 'Web Design' and 'React Apps'.
An image explaining the importance of responsive navbars, displaying a desktop navigation bar with a 'CodeWithAysha' logo and a dropdown menu for 'About' showing various service categories.
Build a Responsive Navbar with Dropdown
Welcome to Day 19 of my 30 Days HTML & CSS Mini Projects! 💙 In today’s tutorial, we’ll build a beautiful responsive navigation bar with a dropdown menu and hamburger toggle — all using only HTML and CSS! No JavaScript required 👏 You’ll learn: How to structure a professional header and
Aysha

Aysha

13 likes

How to Create a Progress Bar with HTML + CSS
#HTMLCSS #WebDevelopment #FrontendDev #codewithaysha
Aysha

Aysha

6 likes

The image introduces "CSS ESSENTIALS Part 3: SELECTORS EXPLAINED," showing examples like 'p', '.class', and '#id'. It highlights how CSS uses selectors to style elements on a webpage, with a magnifying glass icon over a browser window.
This image defines a CSS selector using the example `p { color: blue; }`, labeling 'p' as the selector, 'color' as the property, and 'blue' as the value. It explains that selectors tell CSS which HTML elements to style.
The image illustrates a Type Selector using `h1 { font-size: 32px; color: #2E86AB; }`. It shows how this selector targets all elements of a specific type, like an h1 heading, affecting text such as "Welcome Features."
CSS Selectors Explained
#CSSselectors #CSSexplained #FrontendBasics #CSSforBeginners #codewithaysha
Aysha

Aysha

4 likes

Flash cards I made for conflict poetry
These poems are for Conflict poetry edexcel The poems shown - What were they like, Denise Levertov - War photographer, Carole Satyamurti - The class game, Mary Casey - Poppies, Jane Weir #freshlemon8 #London #poems #lemon8creator #gcse
Amelia

Amelia

85 likes

CSS Media Queries Explained (For Every Screen Size
Want your site to look great on every device? That’s where media queries come in. In this post, we break down how to make your layout responsive using simple, effective CSS tricks. Whether you're designing for phones, tablets, or desktops — this guide is for you! #CSSEssentials #WebDesi
Aysha

Aysha

4 likes

Semantic HTML: What it is and Why it matters
Semantic HTML uses specific tags (e.g., Header, Nav, Article) to define a webpage's content purpose and structure, improving understanding for browsers and developers, and benefiting SEO. Semantic HTML is vital for accessibility, SEO, and code readability. It aids screen readers, helps search
ZeroandoneHQ

ZeroandoneHQ

1 like

A dark blue cover page titled "Beginner-Friendly CSS Visual Guide" with a CSS file icon, inviting users to master CSS basics and style websites like a pro. The Lemon8 logo and username are at the bottom.
A dark blue slide introducing CSS, defining it as Cascading Style Sheets for styling HTML elements. It shows a CSS icon and provides examples of CSS syntax with a selector, property, and value.
A dark blue slide explaining CSS Selectors. It features a diagram showing a CSS file icon branching to 'p', 'div', 'class', and 'id' selectors, with text describing common selector types and their usage.
Beginner-Friendly CSS Visual Guide
#cssforbeginners #frontenddevelopment #cssvisualguide #codingforbeginners #htmlandcss
Aysha

Aysha

9 likes

The CSS Box Model Made Simple
The CSS box model is your secret to pixel-perfect layouts! Learn how content, padding, border, and margin all stack up—and why box-sizing: border-box can save your sanity #CSSBoxModel #WebDesign #FrontendDev #LearnCSS #codewithaysha
Aysha

Aysha

5 likes

The image is a title slide for 'CSS ESSENTIALS Part 11 DISPLAY PROPERTY', introducing the concept of CSS display property as fundamental to layout. It features a question, 'Ever wonder how layout works? It starts with display'.
This image explains 'display: block', showing two 'Block element' boxes stacked vertically, each taking full width. It notes that block elements start on a new line and are used for sections, divs, and paragraphs.
The image illustrates 'display: inline', showing three 'Box' elements ('Box 1', 'Box 2', 'Box 3') sitting next to each other. It explains that inline elements' width fits their content and are used for spans, links, and small text.
CSS Display Property – Control the Layout Flow
Understanding the display property is the foundation of layout in CSS. Whether you're building buttons, sections, or full-page grids — this guide will help you choose the right type. Save and swipe through to level up your CSS skills! #CSSDisplay #LearnCSS #WebDesignTips #FrontendB
Aysha

Aysha

3 likes

HTML5 Structure: A Visual Guide for Beginners
#html5 #webdevelopment #learntocode #codingforbeginners #SemanticHTML
Aysha

Aysha

147 likes

HTML5 Cheatsheet for Beginners – Essential Tags
Want to master HTML5? Here’s a quick cheatsheet covering essential HTML tags – from document structure to forms, tables, and multimedia elements! #coding #html #programming #studymotivation
Aysha

Aysha

106 likes

Huỳnh Lam Kim Cường

Huỳnh Lam Kim Cường

0 likes

HTML Cheat Sheet
Essential HTML tags every developer needs! 🚀 Quick reference guide covering structure, text, links, images, forms & more. Perfect for beginners and coding bootcamps! Save this for your next project 💻✨ #HTML #WebDevelopment #Coding #Programming #webdev
EM

EM

1 like

A dark blue background with the title 'CSS KNOWLEDGE TEST!' and a purple lightbulb icon. Text asks 'How many can you get right? comment your score below!' with a Lemon8 logo and username.
A dark blue background with a white box containing 'Q1: What does the CSS property justify-content: space-between; do?' and four multiple-choice options (A-D).
A dark blue background with a white box containing 'Q2: Which unit is relative to the parent element's font size?' and four multiple-choice options (A-D).
💡 Think you know CSS? Let’s find out!
💡 Think you know CSS? Let’s find out! Take this short quiz and see how many you get right 😎 Comment your score below 👇 #CodeWithAysha #CSSQuiz #LearnToCode
Aysha

Aysha

3 likes

CSS Cheat Sheet
Essential CSS tricks every developer needs! 🔥 Save this for your next project - covers flexbox, grid, animations, and responsive design in one handy reference. Perfect for beginners and pros alike! 💻✨ #CSS #WebDevelopment #Coding #Programming #Developer
EM

EM

1 like

HTML + CSS + JavaScript = MAGIC! 🔥
HTML alone is just a structure, CSS adds style, but JavaScript brings it to life! 🚀 Watch how I build this Digital Clock from scratch using HTML, CSS & JavaScript! 👨‍💻💡 Try it yourself & level up your coding skills #codingforbeginners #htmlcssforbeginners #studymotivation #learntocod
Aysha

Aysha

3 likes

Want to add a cool typing animation to your website? Learn how to create a CSS-only typing effect to make text appear like it's being typed in real time! No JavaScript needed—just pure CSS magic! #codingforbeginners #htmlcssforbeginners #softwareengineer #webdevelopment #studymotivatio
Aysha

Aysha

1 like

The title slide for 'CSS ESSENTIALS Part 12 CSS POSITIONING', featuring a yellow box with 'Positioning Elements' and an arrow, and a call to action: 'Want perfect placement? Learn CSS position!'.
An illustration of `position: static` showing three vertically stacked boxes (Box 1, Box 2, Box 3) and text explaining it's the default position where elements follow normal document flow.
A diagram illustrating `position: relative` where a yellow box is nudged 10px down and 10px right from its original position, with text explaining it stays in flow but can be moved.
Master CSS Positioning
Struggling with moving elements in CSS? Understanding position will give you control over layout, layering, and interactive elements. Swipe through this guide and start placing elements like a pro! #CSSPositioning #LearnCSS #CSSEssentials #codewithaysha
Aysha

Aysha

6 likes

A title slide for 'CSS ESSENTIALS Part 17 CSS TRANSFORMATIONS,' featuring 'Rotate, Scale, Skew, and More' with abstract colored squares on a dark blue background.
An explanation of 'What is CSS Transform?' showing a 'Before' square and a rotated 'After' square, illustrating how transforms change an element's appearance without affecting layout.
A slide detailing the 'rotate()' CSS transformation, showing an arrow rotating from 0° to 45°, with text explaining its function and uses for icons or hover effects.
Master the Magic of CSS Transformations!
#webdesigner #csstransform #womenintech #codewithaysha
Aysha

Aysha

5 likes

The title slide introduces "CSS ESSENTIALS Part 14: GRID BASICS" as a quick-start guide. It features a visual of six blue squares arranged in a 2x3 grid, representing a basic grid layout.
This slide explains "What is CSS Grid?" by comparing a disorganized layout of yellow rectangles ("Before") with an organized grid of yellow squares ("After"). It defines CSS Grid as a 2D layout system for flexible and responsive designs.
This image illustrates the "Grid Container" concept. It shows a larger container holding six smaller grid items. Text explains to use `display: grid;` to turn an element into a grid, making its children grid items for row and column layouts.
CSS Grid Basics — Master Modern Layouts!
“Want clean, responsive layouts? CSS Grid makes it easy! 🙌 Save this guide & tag a coding buddy! 👩‍💻” #CSSGrid #CSSEssentials #LearnCSS #WebDevTips #codewithaysha
Aysha

Aysha

5 likes

Best - FREE - coding sites
learning to code is important and a great look for your resume! plus it’s fun! ANYONE CAN LEARN! these are my favorite sites I’ve utilized to learn new skills! #codinggirl #codingforbeginners #embracevulnerability #shareyourthoughts #Lemon8Diary
LOLLIPOPAK

LOLLIPOPAK

2980 likes

The title slide for 'CSS ESSENTIALS Part 13 FLEXBOX BASICS,' featuring a graphic of a flexible container with three items and arrows indicating horizontal adjustability. It highlights Flexbox as the secret to modern, flexible layouts.
An illustration demonstrating 'The Flex Container,' showing a light blue container holding three purple squares as flex items. Text explains that 'display: flex;' makes an element a flex container, turning its children into flex items.
A visual explanation of 'flex-direction,' showing three purple squares arranged horizontally for 'row' and vertically for 'column.' Text describes how 'flex-direction' controls horizontal or vertical layout flow.
Flexbox Basics— Build Modern CSS Layouts with Ease
Flexbox makes building modern, responsive layouts easy — no more fighting with floats and margins! 🚀 Swipe through this guide and start using Flexbox like a pro. #CSSFlexbox #LearnCSS #FlexboxTips #CSSEssentials #codewithaysha
Aysha

Aysha

6 likes

Dr. Pepper🥤✨
Just some Dr. Pepper related things I found on pinterest and felt the need to share. (i’m obsessed w dr. pepper 🤭) #Lemon8Diary #drpepper #drpepperlover #soda #hellokitty #littlemiss #pinterest #lipbalm
Audrey Reed

Audrey Reed

1265 likes

The image introduces "HTML + CSS IN ACTION: 30 Days of Mini Projects Media Player" for Day 21, showcasing a modern, macOS-style video player UI. It highlights making media playback look modern and polished using HTML and CSS, presented by Code With Aysha.
This image defines a media player, showing the modern video player UI with a prominent play button. Text explains that media players allow users to play audio/video in browsers using HTML, with customizable controls and styling to match a website.
The image illustrates the importance of custom media players by comparing a "Default browser player" with a "Custom styled player." It lists benefits like enhanced user experience, keeping users on the page, building website sections, and practicing UI design.
Build a Modern Video Player Using HTML & CSS Only
In this Day 21 HTML & CSS project, we’ll build a modern video player design using only HTML and CSS — no JavaScript required! This project is inspired by a macOS-style media player, featuring a clean UI, soft gradients, and a cinematic look. It’s perfect for beginners who want to practice re
Aysha

Aysha

9 likes

How to Break Into Software Engineering
#codingforbeginners #htmlcssforbeginners #programming #studymotivation #softwareengineering
Aysha

Aysha

415 likes

A title slide for "HTML + CSS IN ACTION: 30 Days of Mini Projects," focusing on building a "Simple Navbar" for Day 5, presented by Code With Aysha.
Explains what a Navbar is, featuring a browser icon with a 'nav' logo. It defines a navigation bar as a tool for moving between pages, built with HTML's <nav> tag and styled with CSS.
Displays basic HTML code for a navigation bar with Home, About, and Contact links, followed by CSS styles to set background, padding, text alignment, link color, margin, text decoration, and hover effect.
HTML + CSS Day 5: Simple Navbar
Day 5 of HTML + CSS in Action! Today we’re building a simple, clean navbar with just HTML and CSS. Perfect for beginners—this is the foundation for dropdowns and mobile menus later. #HTMLCSS #CodingForBeginners #Navbar #htmlforbeginners #codewithaysha
Aysha

Aysha

5 likes

The image introduces CSS Positioning (Relative, Absolute, Fixed, Sticky) with a computer monitor icon displaying a CSS document. It states the purpose is to learn how different position properties affect web elements and when to use each one.
This image defines CSS positioning, showing a flowchart illustrating the behavior of Relative (moves relative to itself), Fixed (stays in place), Absolute (moves relative to nearest positioned ancestor), and Sticky (sticks at set position) properties. It lists these as key properties.
The image explains `position: relative` with 'Before' and 'After' diagrams showing an element moved right and down. It describes how it moves an element relative to its normal position without affecting other elements, useful for slight adjustments.
CSS Positioning: Relative, Absolute, Fixed-Sticky
#csspositioning #webdevelopment #learntocode #codingforbeginners #TechTips
Aysha

Aysha

4 likes

Glowing Newsletter Form with HTML + CSS
Day 12 of my 30 Days of Mini Projects series — we’re building a stylish newsletter subscription form! It’s simple, modern, and perfect for dark-theme websites. You’ll learn how to style glowing inputs, gradient buttons, and a soft animated glow effect using CSS only. #HTMLCSS #WebDesign
Aysha

Aysha

1 like

The image introduces a comparison between CSS Grid and Flexbox, asking 'Which one should you use?'. It features the CSS logo, a 2x2 grid layout, and a horizontal row layout, prompting users to swipe for key differences.
This image explains the basics of CSS Grid and Flexbox. It shows a 2x2 grid layout for Grid and a horizontal row layout for Flexbox, defining Grid as two-dimensional and Flexbox as one-dimensional, with a rule of thumb for their use.
The image details when to use CSS Grid, providing a code example for a responsive layout. It lists best uses for full-page layouts, when both rows and columns are needed, for strict structures, and complex grids like dashboards.
CSS Grid vs. Flexbox: When to Use Which?
Ever wondered when to use CSS Grid and when to use Flexbox? 🤔 Both are powerful layout tools, but they serve different purposes! 🔹 CSS Grid → Best for structured, two-dimensional layouts (rows & columns). 🔹 Flexbox → Best for one-dimensional layouts, perfect for dynamic row or column alignm
Aysha

Aysha

11 likes

The cover image for an article titled "The Power of CSS Variables: Why You Should Use Them," featuring CSS file icons and the Lemon8 logo.
This image defines CSS Variables, explaining they store reusable values. It includes a code example showing `:root` defining `--primary-color` and a button using `var(--primary-color)`, demonstrating easy updates.
This image highlights reasons to use CSS Variables, including easier theme management, reusable and scalable code, effortless updates, and better maintainability, with a background of code on a screen.
The Power of CSS Variables:Why You Should Use Them
#cssvariables #cssmagic #frontenddevelopment #csshacks #codebetter
Aysha

Aysha

2 likes

The image introduces a 'Modern Testimonial Slider' project, part of '30 Days of Mini Projects' using HTML and CSS. It features a sample testimonial card from Michael Johnson and highlights bringing UI to life with sliding testimonials, marking it as Day 28 with Code With Aysha.
This image defines testimonial sliders as rotating carousels for customer reviews. It showcases an example testimonial from Ana Garcia and lists benefits like saving space, modern appearance, adding social proof, and enhancing UI movement.
The image explains the importance of testimonial sliders, featuring a sample testimonial from John Doe. It lists essential applications for portfolio websites, business landing pages, product showcases, course pages, and agency sites, emphasizing their role in building trust.
How to Build a Testimonial Slider Using HTML & CSS
Day 28 — Modern Testimonial Slider Today we’re building a clean, responsive testimonial slider using only HTML + CSS. Smooth animations, auto-slide effects, and a modern card UI — perfect for portfolios, business websites, and landing pages #webdevelopment #carouselsliders #codewithaysha
Aysha

Aysha

5 likes

A CodeSignal certificate awarded to Cuong Lam Kim Huynh for successfully completing the Introduction to HTML course, part of the "Comprehensive Introduction to Front-End Engineering" learning path, dated January 12, 2025, and signed by Tigran Sloyan, President and CEO.
Huỳnh Lam Kim Cường

Huỳnh Lam Kim Cường

0 likes

The image is a title slide for a guide on common HTML mistakes and their fixes. It features an illustration of a person coding on a laptop, surrounded by code snippets and language labels like HTML, CSS, and C++. The text encourages avoiding errors to write clean HTML.
This slide addresses the mistake of forgetting the `<!DOCTYPE html>` declaration. It shows incorrect HTML code without it and the correct version including it, explaining that the doctype ensures proper browser rendering.
The slide highlights the error of not using semantic HTML. It contrasts using generic `<div>` tags for everything with the correct approach of using semantic tags like `<header>` and `<section>`, emphasizing improved SEO and accessibility.
Common HTML Mistakes Beginners Make and How to Fix
#learntocode #studymotivation #success #html #webdevelopment
Aysha

Aysha

22 likes

A title slide for 'HTML + CSS IN ACTION: 30 Days of Mini Projects' featuring 'Profile Card (with picture + text)' for portfolios and team pages. It highlights 'Day 4' and mentions 'Code With Aysha' and the Lemon8 platform.
An image defining a profile card, showing an example with 'Aysha, Software Engineer' and a circular profile picture. Text describes it as a simple card layout with image, name, and description, common in portfolios, team pages, and social apps.
This image displays basic HTML code for a profile card structure, including an image, name, and description. Below it, CSS styles are shown for the card's layout, background, text, and the circular image within the card.
HTML + CSS in Action (Day 4) — Profile Card
Day 4 of HTML + CSS in Action! 🚀 Today we’re building a Profile Card with picture and text using HTML + CSS. This simple project is perfect for portfolios and team pages. #HTMLCSS #FrontendDevelopment #ProfileCard #codewithaysha
Aysha

Aysha

5 likes

How to control size with CSS: Width, Height
#CSSEssentials #CSSBasics #FrontendTips
Aysha

Aysha

5 likes

Every AI assistant forgets the moment you close the tab - this fixes that, and sixty-two thousand developers have already starred it. #github #opensource #coding #tech #ai
Kirbyhatguytech

Kirbyhatguytech

0 likes

Semantic HTML
Did you know that using Semantic HTML makes your website more accessible, improves SEO, and enhances user experience? #webaccessibility #semanticHTML #webdevelopment #webdesign #frontenddevelopment
Aysha

Aysha

4 likes

The cover image for a CSS Cheatsheet for Beginners, featuring the CSS3 logo and the text "Learn the most-used properties in one place!" on a dark blue background.
A CSS Cheatsheet section detailing properties for Background (color, image, repeat, position, size), Border (border, radius, top), and Outline (outline, offset) with example values.
A CSS Cheatsheet section outlining properties for Position (relative, top, left, z-index), Size & Dimension (width, height, max-width), and Float & Clear (float, clear) with example values.
CSS CHEATSHEET for Beginners
#css3cheatsheet #learncss #webdesignbasics #frontendtips #codingforbeginners
Aysha

Aysha

31 likes

The image is a title card for "HTML + CSS IN ACTION: 30 Days of Mini Projects," featuring a "Feedback Form with Star Ratings." It highlights collecting feedback with glowing stars and a clean layout, for Day 13, by Code With Aysha.
This image defines a feedback form, showing an example with five yellow stars, a comment box, and a submit button. It explains that feedback forms gather user opinions, improve services, and that star ratings make them engaging.
The image compares a plain text feedback form (marked with X) to a glowing star feedback form (marked with a checkmark). It emphasizes that the latter improves user experience, looks polished, and is easy to integrate.
Build a Feedback Form with Star Ratings HTML + CSS
Day 13 of 30 Days of Mini Projects! We’re creating a glowing, dark-theme feedback form with star ratings and a soft gradient button. Clean, modern, and perfect for any website #HTMLCSS #WebDesign #MiniProjects #FeedbackForm #codewithaysha
Aysha

Aysha

2 likes

CSS Essentials Part 1: What is CSS?
#cssforbeginners
Aysha

Aysha

12 likes

An introductory slide titled "CSS ESSENTIALS Part 18 CSS SHADOWS" featuring three colored squares with shadows, inviting users to add "shadow magic" to their UI for enhanced visual appeal.
A slide defining "What is a Shadow in CSS?" by comparing a square with no shadow to one with a soft shadow, explaining that CSS shadows add depth to elements like boxes and text.
A slide detailing the `box-shadow` syntax in CSS, showing a code example and a visual representation of a box with a shadow, along with its offset-x, offset-y, blur-radius, and color parameters.
CSS Shadows Explained
Shadows can do more than just look pretty — they add depth, guide user focus, and enhance UI hierarchy. In this post, we break down how to use box-shadow and text-shadow with real examples. Perfect for beginners and growing devs! #CSSEssentials #CSSShadows #FrontendTips #codewithaysha
Aysha

Aysha

10 likes

The image introduces 'HTML + CSS IN ACTION: 30 Days of Mini Projects' for Day 10, focusing on creating a 'Signup Form'. It highlights turning simple forms into glowing, modern signup experiences using HTML and CSS, presented by Code With Aysha.
This image defines a signup form, showing a 'Basic Form' and a 'Glowing, Styled Form' side-by-side. It explains that signup forms collect user details like username, email, and password to create accounts, being a common web UI element.
The image illustrates the use of the <fieldset> tag, comparing ungrouped inputs with inputs grouped inside a box with a 'Sign Up' legend. It explains that <fieldset> improves structure and accessibility by grouping related inputs with a clear label.
Day 10: How to create a Signup Form HTML CSS
Today’s project is a glowing Signup Form! Group inputs with <fieldset> Label with <legend> Style with CSS glow and turquoise brand colors Save this for your coding practice and try building your own! 💻 #HTMLCSS #SignupForm #Frontend #codingforbeginners #codewithaysha
Aysha

Aysha

4 likes

Can You Guess How This Effect Was Made
#codingforbeginners #htmlcssforbeginners #programming #studymotivation #softwareengineer
Aysha

Aysha

2 likes

A title slide for "CSS ESSENTIALS Part 16: CSS TRANSITIONS." It introduces mastering CSS Transitions for smoother interactions, featuring a "Hover" button example and the creator's handle.
This slide defines CSS Transitions as creating smooth changes between property values without JavaScript. It visually contrasts "Before" (no transition) and "After" (with transition) states.
The slide presents the basic syntax for CSS Transitions: `transition: property duration timing-function delay;`. It explains that this syntax controls how the transition behaves.
What are CSS Transitions?
CSS Transitions add smooth, polished animations to your site — with just a few lines of code! ✨ Perfect for buttons, menus, hover effects & more. In this post, I’ll break down CSS Transitions so you can start using them today. 🚀 Save this guide & share with a fellow coder! 👩‍💻 #WebDe
Aysha

Aysha

4 likes

The image introduces CSS Backgrounds, Part 10 of CSS Essentials. It shows the `background` property using `linear-gradient` to define style and color, encouraging users to make layouts pop with background styling.
This image explains the `background-color` property, demonstrating how to set an element's base color using a hex code. It highlights its use for creating contrast, branding, or clarity in web design.
The image illustrates the `background-image` property, showing how to add an image behind content using `url('pattern.png')`. It suggests using this property to add texture or branding flair to web elements.
CSS Backgrounds – Color, Images & Control
#CSSBackgrounds #LearnCSS #CSSForBeginners #FrontendTips #codewithaysha
Aysha

Aysha

11 likes

It may or may not depend on your effort.🫡
It sounds contradictory but everyone has their perfect time to learn new frameworks, so do not despair and do it without fear but with patience 😎 #lemon8diarychallenge #webdevelopment #programmer
Feibertord ⚡️

Feibertord ⚡️

15 likes

Day 1: Stylish Headings & Paragraphs | HTML + CSS
Welcome to Day 1 of HTML + CSS in Action! 🎉 Today we’re taking plain headings and paragraphs in HTML and styling them with CSS to make them clean, readable, and professional. #HTML #CSS #LearnToCode #WebDevelopment #codewithaysha
Aysha

Aysha

9 likes

See more