html and css آموزش
21.2K subscribers
447 photos
221 videos
88 files
276 links
ادمین :
@Maryam3771


تعرفه تبلیغات:
https://t.iss.one/alloadv/822
Download Telegram
با استفاده از این کتابخونه جاوااسکریپت نمودار و چارت‌های مختلف رسم کنید



https://mermaid.js.org


💎 Channel: @htmlcss_channels
👍2
This media is not supported in your browser
VIEW IN TELEGRAM
🖥 ایده جالب برای page preloader با استفاده از CSS


📎 Codepen


💎 Channel: @htmlcss_channels
🔥7👍4
This media is not supported in your browser
VIEW IN TELEGRAM
🖥 POLINE is an excellent #TypeScript library for generating a color palette

npm install poline


The name "POLINE" is associated with the essence of the generator - drawing a line in polar coordinates.

👉 POLINE Generator
🖥 GitHub




💎 Channel: @htmlcss_channels
👍21
#CSS Grids explained



💎 Channel: @htmlcss_channels
👍61
Media is too big
VIEW IN TELEGRAM
Create a Responsive Mini Portfolio Website Design Using #HTML #CSS & #JavaScript



💎 Channel: @htmlcss_channels
2👍1🔥1
Learn Advanced HTML and CSS Concepts.zip
610.8 MB
Learn Advanced #HTML and #CSS Concepts

؛HTML و CSS ابتدایی یک شروع عالی برای توسعه وب پیشانی است. با این حال شما باید در مورد HTML معنایی، متغیرها در CSS، توابع و نحوه به روز ماندن با همه این تغییرات بیاموزید.

این دوره برخی از بخش های پیشرفته و کمتر مورد بحث HTML را پوشش می دهد، از جمله:


- Semantic HTML and why it is required
- CSS3 functions
- CSS3 variables
- Importance of meta tags
- Media queries in CSS
- How to make websites responsive and work across multiple screen sizes
- Introduction to animations with CSS

تمرینات عملی تعاملی را نیز در طول مسیر خواهید یافت که به شما در یادگیری از طریق انجام دادن کمک می کند.



💎 Channel: @htmlcss_channels
👍31🔥1
This media is not supported in your browser
VIEW IN TELEGRAM
Social buttons [Border rotation]


https://codepen.io/OfigenusMaximus/pen/gOZGeKw


#button #animation


با  ری اکشن بهمون انرژی بدید❤️

💎 Channel: @htmlcss_channels
14🔥6👍1
This media is not supported in your browser
VIEW IN TELEGRAM
🖥 reveal.js - open-source framework for creating HTML presentations

The framework has a powerful set of features, including Markdown support, the ability to create animations, PDF export, presenter notes, support for LaTeX layout, syntax highlighting code and a convenient API.


🟡 An example of such a presentation
🖥 GitHub



💎 Channel: @htmlcss_channels
👍2
Media is too big
VIEW IN TELEGRAM
HTML & CSS & JS


💎 Channel: @htmlcss_channels
👍21
🔊 Voice Recognition in JS

The Web Speech API allows interaction with voice interfaces in your web applications. It consists of two parts: SpeechSynthesis (Text-to-Speech) and SpeechRecognition (Asynchronous Speech Recognition).

<h2>Voice Recognition</h2>
<p id="transcription"></p>
<button id="startRecognitionButton">Record</button>


const startRecognitionButton = document.getElementById("startRecognitionButton");
const transcription = document.getElementById("transcription");
startRecognitionButton.addEventListener("click", function () {
const recognition = new webkitSpeechRecognition();
recognition.lang = "en-US";
recognition.onresult = function (event) {
const transcript = event.results[0][0].transcript;
transcription.textContent = transcript;};
recognition.onerror = function (event) {
console.error("Error:", event.error);};
recognition.start();});
👍8