Media is too big
VIEW IN TELEGRAM
Create a Responsive Mini Portfolio Website Design Using #HTML #CSS & #JavaScript
💎 Channel: @htmlcss_channels
💎 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
؛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
👍3❤1🔥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
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
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
🔊 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).
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
—
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
—
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