Forwarded from Learn Web Development
✨If you divide web development into subparts, it becomes easy to learn✨
Lesson 1: HTML and CSS 🧱🎨
Lesson 2: CSS frameworks 🧮
Lesson 3: JS and DOM ⚙️📃
Lesson 4: Git and GitHub 🗂️
Lesson 5: React / Angular / Vue ⚛️
Lesson 6: Node.js 🔙🔚
Lesson 7: API and Database 🗄️📄
#Webdevelopment
Follow @learn_webdevelopment for more Web Dev content
Lesson 1: HTML and CSS 🧱🎨
Lesson 2: CSS frameworks 🧮
Lesson 3: JS and DOM ⚙️📃
Lesson 4: Git and GitHub 🗂️
Lesson 5: React / Angular / Vue ⚛️
Lesson 6: Node.js 🔙🔚
Lesson 7: API and Database 🗄️📄
#Webdevelopment
Follow @learn_webdevelopment for more Web Dev content
Forwarded from Learn Html
✨Check out these amazing template sites✨
📌 https://t.co/bUcMPbPi56
📌 https://t.co/b3lRmgTMMw
📌 https://t.co/KFHSRGsJCF
📌 https://t.co/Nr1PSKXLFl
📌 https://t.co/wlIjPhHJAK
📌 https://t.co/WI0uFLN4Xu
📌 https://t.co/90ipM5tjoi
📌 https://t.co/QMHWXYxvyf
📌 https://t.co/bUcMPbPi56
📌 https://t.co/b3lRmgTMMw
📌 https://t.co/KFHSRGsJCF
📌 https://t.co/Nr1PSKXLFl
📌 https://t.co/wlIjPhHJAK
📌 https://t.co/WI0uFLN4Xu
📌 https://t.co/90ipM5tjoi
📌 https://t.co/QMHWXYxvyf
Forwarded from Learn Web Development
Git learning is important in the field of development. I suggest you learn it after HTML, CSS and JS
Learn Git interactively👇
📌 https://t.co/i6aRYkkwaW
📌 https://t.co/9gl7aF0HuZ
📌 https://t.co/E5pj90UCDz
#Github #Git
Follow @learn_webdevelopment for more Web Dev content
Learn Git interactively👇
📌 https://t.co/i6aRYkkwaW
📌 https://t.co/9gl7aF0HuZ
📌 https://t.co/E5pj90UCDz
#Github #Git
Follow @learn_webdevelopment for more Web Dev content
Check out these amazing sites👇
📌 https://t.co/YxkraBG9rW
// Create your icon fonts in seconds
📌 https://t.co/G3DMGnrFkH
// Remove Image Background for free
📌 https://t.co/mh0pUR110L
// JavaScript library for creating unique, aesthetically pleasing triangle patterns
#JS #Javascript #Frameworks #testing
Follow @learn_JavaScript_js for more JavaScript content.
_________________________
Follow my other channels
For HTML : @learn_html_web
For CSS : @learn_CSS_web
For PHP : @learn_php_web
For Programming tutorials/Courses/Materials :
@Programmingworld_dev
For any quires you can ask in this group :
@devlopers_hub
📌 https://t.co/YxkraBG9rW
// Create your icon fonts in seconds
📌 https://t.co/G3DMGnrFkH
// Remove Image Background for free
📌 https://t.co/mh0pUR110L
// JavaScript library for creating unique, aesthetically pleasing triangle patterns
#JS #Javascript #Frameworks #testing
Follow @learn_JavaScript_js for more JavaScript content.
_________________________
Follow my other channels
For HTML : @learn_html_web
For CSS : @learn_CSS_web
For PHP : @learn_php_web
For Programming tutorials/Courses/Materials :
@Programmingworld_dev
For any quires you can ask in this group :
@devlopers_hub
✨Have you heard the term Jamstack? This is probably the future of web development✨
Let's understand what is jamstack👇
So the JAM stands for
J - JavaScript
A - APIs
M - Markup
Stack - Technologies used to build a particular project
The first interesting part here is that in some context we all have worked on Jamstack.
Trust me!! 😉
Consider a HTML file only, let's say with some text nothing else. Yes that's a Jamstack app becuase there is a markup in your app that makes it JAMstack
The second interesting part in jamstack is that you have already aware of all the terms used in it
JavaScript
APIs
Markup
So it will be easy for you to getting started with it
A first and foremost condition to be a jamstack is that your HTML should be served statically.
In simple terms we can say that HTML file should not being dynamically served from a server
But that doesn’t mean you have to build 100% of the app within the browser👇
You can also use static site generators(say Next.js) that allow us to pull in our files at build time and render the pages out as HTML files
So here comes some benefits of Jamstack👇
🔹 FAST
As in jamstack we are working on static site. So we don't have to wait for servers to calculate our request and serve us the markup file.
🔹 SECURE
Well jamstacks apps are super secure because we don't have to maintain the server
🔹 SCALE
As jamstack app is served entirely from a CDN there is no complex logic to determine what assets can be send, that pretty much automatically gives you infinite scalability
🔹 Maintainability
Obviously when hosting complexity is reduced, so are maintenance tasks
Tools you need in order to make a jamstack app
Site Generators - Gatsby, Next.js, Hugo, etc...
Serving your app - Netlify, GitHub, AWS, etc...
For API requests - Ghost, Strapi, Netlify CMS, etc...
#JS #Javascript #Frameworks #testing
Follow @learn_JavaScript_js for more JavaScript content.
___________________________________________
Follow my other channels
For HTML : @learn_html_web
For CSS : @learn_CSS_web
For PHP : @learn_php_web
For Programming tutorials/Courses/Materials :
@Programmingworld_dev
For any quires you can ask in this group :
@devlopers_hub
Let's understand what is jamstack👇
So the JAM stands for
J - JavaScript
A - APIs
M - Markup
Stack - Technologies used to build a particular project
The first interesting part here is that in some context we all have worked on Jamstack.
Trust me!! 😉
Consider a HTML file only, let's say with some text nothing else. Yes that's a Jamstack app becuase there is a markup in your app that makes it JAMstack
The second interesting part in jamstack is that you have already aware of all the terms used in it
JavaScript
APIs
Markup
So it will be easy for you to getting started with it
A first and foremost condition to be a jamstack is that your HTML should be served statically.
In simple terms we can say that HTML file should not being dynamically served from a server
But that doesn’t mean you have to build 100% of the app within the browser👇
You can also use static site generators(say Next.js) that allow us to pull in our files at build time and render the pages out as HTML files
So here comes some benefits of Jamstack👇
🔹 FAST
As in jamstack we are working on static site. So we don't have to wait for servers to calculate our request and serve us the markup file.
🔹 SECURE
Well jamstacks apps are super secure because we don't have to maintain the server
🔹 SCALE
As jamstack app is served entirely from a CDN there is no complex logic to determine what assets can be send, that pretty much automatically gives you infinite scalability
🔹 Maintainability
Obviously when hosting complexity is reduced, so are maintenance tasks
Tools you need in order to make a jamstack app
Site Generators - Gatsby, Next.js, Hugo, etc...
Serving your app - Netlify, GitHub, AWS, etc...
For API requests - Ghost, Strapi, Netlify CMS, etc...
#JS #Javascript #Frameworks #testing
Follow @learn_JavaScript_js for more JavaScript content.
___________________________________________
Follow my other channels
For HTML : @learn_html_web
For CSS : @learn_CSS_web
For PHP : @learn_php_web
For Programming tutorials/Courses/Materials :
@Programmingworld_dev
For any quires you can ask in this group :
@devlopers_hub
Forwarded from Learn CSS™
Telegraph
Create a Gradient Border
Trick to Create a Gradient Border 😜 This is pretty easy. It will just take 5 minutes😄 STEP 1: - Create your element around which you want to create gradient border In this example I have a sqaure around which I'll create gradient border STEP 2: - Create pseudo…
This media is not supported in your browser
VIEW IN TELEGRAM
I created a minimal card design using CSS have a look😅
Learn JavaScript™
I created a minimal card design using CSS have a look😅
If you guys want to try
Check the code below👇
HTML:
Check the code below👇
HTML:
<div class="container">
<div class="content">
<h1>LEARN JAVASCRIPT</h1>
<h3>All info and tutorial of JAVA SCRIPT (JS)</h3>
</div>
<div class="flap"></div>
</div>
CSS:
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;900&display=swap');
body {
background: #f2f2f2;
}
.container {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
height: 400px;
width: 600px;
background: #f2f2f2;
overflow: hidden;
border-radius: 20px;
cursor: pointer;
box-shadow: 0 0 20px 8px #d0d0d0;
}
.content {
position: absolute;
top: 50%;
transform: translatey(-50%);
text-align: justify;
color: black;
padding: 40px;
font-family: 'Merriweather', serif;
}
h1 {
font-weight: 900;
text-align: center;
}
h3 {
font-weight: 300;
}
.flap {
width: 100%;
height: 100%;
}
.flap::before {
position: absolute;
content: "";
height: 100%;
width: 50%;
background: url("https://pbs.twimg.com/profile_images/1347537601989730307/QDQ0IZXv_400x400.jpg") white;
background-position: 100px;
background-repeat: no-repeat;
transition: 1s;
}
.flap::after {
position: absolute;
content: "";
height: 100%;
width: 50%;
right: 0;
background: url("https://pbs.twimg.com/profile_images/1347537601989730307/QDQ0IZXv_400x400.jpg") white;
background-position: -200px;
background-repeat: no-repeat;
transition: 1s;
}
.container:hover .flap::after {
transform: translatex(300px);
}
.container:hover .flap::before{
transform: translatex(-300px);
}
✨Build real application to learn any coding skill✨
Want to learn JavaScript?
Build application using JavaScript
Want to learn React?
Build application using React
Want to learn NodeJS?
Build application using NodeJS
🔥Practice beats theory every time🔥
Want to learn JavaScript?
Build application using JavaScript
Want to learn React?
Build application using React
Want to learn NodeJS?
Build application using NodeJS
🔥Practice beats theory every time🔥
✨5 Coding Projects You Should Include in Your Front End Portfolio✨
https://telegra.ph/5-Coding-Projects-You-Should-Include-in-Your-Front-End-Portfolio-02-09
https://telegra.ph/5-Coding-Projects-You-Should-Include-in-Your-Front-End-Portfolio-02-09
Telegraph
5 Coding Projects You Should Include in Your Front End Portfolio
A portfolio is a great way to show off your skills to potential employers. And it's especially helpful for entry-level developers who might not have any professional work experience. However, a common problem you might have when building a portfolio is knowing…
Forwarded from Programming World👨💻 (☠️Anonymus Venom☠️)
Coding block all courses 👇
Size ( 98 GB )
Source download MEGA LINK 🖇️ :
https://mega.nz/folder/tNR3iCDa#60KInLA1y9UpCghsseMk4w
Size ( 98 GB )
Source download MEGA LINK 🖇️ :
https://mega.nz/folder/tNR3iCDa#60KInLA1y9UpCghsseMk4w
Learn JavaScript™ pinned «✨5 Coding Projects You Should Include in Your Front End Portfolio✨ https://telegra.ph/5-Coding-Projects-You-Should-Include-in-Your-Front-End-Portfolio-02-09»