html and css آموزش
21.3K subscribers
446 photos
218 videos
88 files
275 links
ادمین :
@Maryam3771


تعرفه تبلیغات:
https://t.me/alloadv/822
Download Telegram
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
🖥 docsify - cool JS website generator with documentation

npm i docsify

docsify creates a documentation site literally on the fly. Unlike GitBook, it does not generate static html files. Instead, it intelligently downloads and parses Markdown files and then displays them as a website.

To start using docsify, you just need to create an index.html and deploy it to GitHub Pages.

🖥 GitHub : https://github.com/docsifyjs/docsify

🟡 Docks : https://docsify.js.org/#/?id=docsify

🟡 Examples of use : https://github.com/docsifyjs/awesome-docsify#showcase


💎 Channel: @htmlcss_channels
👍1🙏1
This media is not supported in your browser
VIEW IN TELEGRAM
Animated Rings | HTML CSS



💎 Channel: @htmlcss_channels
👍32🔥1
Toggle.rar
1.8 KB
HTML & CSS



💎 Channel: @htmlcss_channels
🙏5
Media is too big
VIEW IN TELEGRAM
How to Create Responsive Registration Form in #HTML & #CSS


Code : link



💎 Channel: @htmlcss_channels
👍4
#HTML Input Types - Explained with Examples

Enhance form functionality with HTML input types! Explore examples for text, radio, checkbox, and more, mastering diverse elements for dynamic user interactions


https://morioh.com/a/166ec4d08712/html-input-types-explained-with-examples



💎 Channel: @htmlcss_channels
👍2
میتونید با انجام چالش های این وبسایت که از سطح مبتدی تا پشرفته طراحی شده تمرین کنید و توی فرانت حرفه ای تر شوید

https://frontendmentor.io/




#معرفی_سایت


💎 Channel: @htmlcss_channels
👍6
Media is too big
VIEW IN TELEGRAM
Make a Responsive Search Bar in #HTML #CSS & #JavaScript


Code



💎 Channel: @htmlcss_channels
1👍1🔥1
html-react-parser - TypeScript tool for converting #HTML to React

npm i html-react-parser


Here's a simple usage example:

import parse from 'html-react-parser';

parse('<p>Hello, World!</p>');

// React.createElement('p', {}, 'Hello, World!')



🖥 GitHub
👉 Example


💎 Channel: @htmlcss_channels
👍1🙏1
Media is too big
VIEW IN TELEGRAM
دوره آموزش react js (مقدماتی تا پیشرفته) : ری اکت جی اس به زبان ساده اما اصولی


منبع : link
🔻
📌اگه تازه شروع به یادگیری طراحی سایت کردید این ویدیو ها رو ببینید ( به زبان فارسیه)

🌟آموزش html از صفر
https://t.me/htmlcss_channels/391

🌟آموزش Css از صفر
https://t.me/htmlcss_channels/391

🌟آموزش جاوااسکریپت از صفر
https://t.me/htmlcss_channels/402

#JavaScript
#html
#css
#ReactJS

💎 Channel: @htmlcss_channels
👍41🙏1
Media is too big
VIEW IN TELEGRAM
Build A Responsive E-Commerce Website Using #HTML #CSS And #JavaScript


Code : link



💎 Channel: @htmlcss_channels
🔥3👍2
Media is too big
VIEW IN TELEGRAM
Responsive Card Slider Using #HTML #CSS & #JavaScript | Swiper Js


Code : link



💎 Channel: @htmlcss_channels
👍3👏1
Media is too big
VIEW IN TELEGRAM
CSS Card Hover Effects | #HTML & #CSS

Code : link


💎 Channel: @htmlcss_channels
🙏6👍1👏1