Forwarded from Learn JavaScriptβ’
This media is not supported in your browser
VIEW IN TELEGRAM
I created a minimal card design using CSS have a lookπ
Forwarded from Learn JavaScriptβ’
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);
}
Forwarded from Learn JavaScriptβ’
β¨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 Learn Web Development
β¨Start your 100 Days of Code for mastering web development β¨
In this 100 Days you need to cover mainly 4 technologies
- HTML
- CSS
- JavaScript
- DOM
Starting with HTML, its pretty easy and straight forward. It's a markup that totally operates on tag.
You can get a quick overview of it within few minutes. But wait! Don't rush.... There are a lot of tags
You don't need to learn all tags in one single go
I suggest you to start HTML with a Free crash course.
π HTML: https://t.co/hEPQBMfj2o
Try to play around with all tricky tags like table tags.
You don't need to waste your 10 - 20 days in HTML because as you go further into your journey, you will discover more cool tags and attributes eventually
I think 1 to 5 days for HTML is enough.
After 5 - 6 days it's time to add some styling in your website. And here CSS comes into action
Its totally operates on properties and value. There are 500+ properties. Which takes almost 100 days to learn allπ..........Just kiddingπ¬
You don't even need to learn all of them.
You must have heard about "Pareto principle" which states that for many outcomes roughly 80% of consequences come from 20% of the causes
Similarly, in order to cover 80% of CSS, you need to learn only 20 propertiesπ
The cool part about this 100 Days of Code is that all technologies are interconnected. Like when you're working on CSS, you have to work on HTML as well.
So you'll learn about HTML as well while learning CSS
Some important CSS concepts you need to cover
- Display flex
- Display grid
- Box model
- Background
- Color
- Positioning
- Fonts
In my opinion, 25 to 30 days should be enough for CSS. Although they are not fixed you can arrange them according to you.
To be good developer, you need to Google a lot. How quickly you find your solution on Google makes you a good developer
W3 schools and MDN are documentations where you find detailed explanation on each and every topic
So try to learn from there. Try to put everything into practice.
π CSS: https://t.co/6XnTabhGQX
Congratulationsπ
After 30 days, you will be able to make some static sites, personal website and some stunning landing pages.
Time to rewind all your learning and put them together to create a website.
Structure is doneβ
Styling is doneβ
Time to add behaviour in your website using JavaScript.
JavaScript is deep so I suggest you to learn it from day 31 to the end (100th day)
JavaScript is used for adding logic in your website.
For ex:
- What happens after the user clicks on the button is controlled by JavaScript
- Increase the likes count when user click on the heart buttonπ
Basic things you need to cover lin JavaScript are
- Data Types
- Var, const, let
- Operators
- Comparators
- Functions
- Loops
- Control statement
- Arrays
- etc
This may sound challenging and confusing but once you start with it, everthing seems like a cake walk.
Don't rush. Try to take short note for future reference it will help you for sure.
So how we can change thing in HTML using JavaScript?
Here DOM comes into play
With the HTML DOM, JavaScript can access and change all the elements of an HTML document
The DOM is powerful but most beginners avoid it or don't take it seriously. Please do not do this.
DOM mainly revolves around methods and value. By method you select where to change and by value you tell what to change.
By the combination of DOM and JavaScript you can perform a lot of cool things.
- You can change styling
- You can change content
- You can change tags
- You can change attributes
- ETC.....
The combination of HTML, CSS, JavaScript and DOM is the most powerful thing in my opinion and once you learn these things. You will become powerful tooπͺπ
Start your web development journey today. It's now or never.
In this 100 Days you need to cover mainly 4 technologies
- HTML
- CSS
- JavaScript
- DOM
Starting with HTML, its pretty easy and straight forward. It's a markup that totally operates on tag.
You can get a quick overview of it within few minutes. But wait! Don't rush.... There are a lot of tags
You don't need to learn all tags in one single go
I suggest you to start HTML with a Free crash course.
π HTML: https://t.co/hEPQBMfj2o
Try to play around with all tricky tags like table tags.
You don't need to waste your 10 - 20 days in HTML because as you go further into your journey, you will discover more cool tags and attributes eventually
I think 1 to 5 days for HTML is enough.
After 5 - 6 days it's time to add some styling in your website. And here CSS comes into action
Its totally operates on properties and value. There are 500+ properties. Which takes almost 100 days to learn allπ..........Just kiddingπ¬
You don't even need to learn all of them.
You must have heard about "Pareto principle" which states that for many outcomes roughly 80% of consequences come from 20% of the causes
Similarly, in order to cover 80% of CSS, you need to learn only 20 propertiesπ
The cool part about this 100 Days of Code is that all technologies are interconnected. Like when you're working on CSS, you have to work on HTML as well.
So you'll learn about HTML as well while learning CSS
Some important CSS concepts you need to cover
- Display flex
- Display grid
- Box model
- Background
- Color
- Positioning
- Fonts
In my opinion, 25 to 30 days should be enough for CSS. Although they are not fixed you can arrange them according to you.
To be good developer, you need to Google a lot. How quickly you find your solution on Google makes you a good developer
W3 schools and MDN are documentations where you find detailed explanation on each and every topic
So try to learn from there. Try to put everything into practice.
π CSS: https://t.co/6XnTabhGQX
Congratulationsπ
After 30 days, you will be able to make some static sites, personal website and some stunning landing pages.
Time to rewind all your learning and put them together to create a website.
Structure is doneβ
Styling is doneβ
Time to add behaviour in your website using JavaScript.
JavaScript is deep so I suggest you to learn it from day 31 to the end (100th day)
JavaScript is used for adding logic in your website.
For ex:
- What happens after the user clicks on the button is controlled by JavaScript
- Increase the likes count when user click on the heart buttonπ
Basic things you need to cover lin JavaScript are
- Data Types
- Var, const, let
- Operators
- Comparators
- Functions
- Loops
- Control statement
- Arrays
- etc
This may sound challenging and confusing but once you start with it, everthing seems like a cake walk.
Don't rush. Try to take short note for future reference it will help you for sure.
So how we can change thing in HTML using JavaScript?
Here DOM comes into play
With the HTML DOM, JavaScript can access and change all the elements of an HTML document
The DOM is powerful but most beginners avoid it or don't take it seriously. Please do not do this.
DOM mainly revolves around methods and value. By method you select where to change and by value you tell what to change.
By the combination of DOM and JavaScript you can perform a lot of cool things.
- You can change styling
- You can change content
- You can change tags
- You can change attributes
- ETC.....
The combination of HTML, CSS, JavaScript and DOM is the most powerful thing in my opinion and once you learn these things. You will become powerful tooπͺπ
Start your web development journey today. It's now or never.
HTML is deep too, has lots of tags and attributes but that does not mean that you should learn it for months.
Instead learn about some basic tags and then move to CSS. As you move forward in this area, you eventually discover more tags and attributes
Instead learn about some basic tags and then move to CSS. As you move forward in this area, you eventually discover more tags and attributes
Forwarded from Programming Worldπ¨βπ» (β οΈAnonymus Venomβ οΈ)
β¨Coding Blocks β Complete Collectionβ¨
β‘οΈAlgo++ Data Structure
β‘οΈAndroid Development
β‘οΈC++ Fundamentals
β‘οΈC++ STL
β‘οΈCompetitive Programming
β‘οΈFAANG
β‘οΈFull-stack web development
β‘οΈInterview preparation
β‘οΈJava fundamentals
β‘οΈKotlin for beginners
β‘οΈPython fundamentals
π Link:
https://mega.nz/folder/Ryw0ACrT#bM6tikNRN9VyipFG8r8Sbg
DISCLAIMER: No Copyright Infringement Intended, All Rights Reserved to the Actual Owner.
This content has been shared under Educational And Non-Profit Purposes Only
π¨Note:Download as fast as possible might get deleted at any time
Follow @Programmingworld_dev for more programming stuff
β‘οΈAlgo++ Data Structure
β‘οΈAndroid Development
β‘οΈC++ Fundamentals
β‘οΈC++ STL
β‘οΈCompetitive Programming
β‘οΈFAANG
β‘οΈFull-stack web development
β‘οΈInterview preparation
β‘οΈJava fundamentals
β‘οΈKotlin for beginners
β‘οΈPython fundamentals
π Link:
https://mega.nz/folder/Ryw0ACrT#bM6tikNRN9VyipFG8r8Sbg
DISCLAIMER: No Copyright Infringement Intended, All Rights Reserved to the Actual Owner.
This content has been shared under Educational And Non-Profit Purposes Only
π¨Note:Download as fast as possible might get deleted at any time
Follow @Programmingworld_dev for more programming stuff
Forwarded from Learn Web Development
β¨What does Web Development look like in 2021β¨
πππ
- HTML
- CSS
- CSS frameworks
- JS
- DOM
- UI and UX
- RWD
- CLI
- Git and GitHub
- React / Angular / Vue
- NPM
- Node.js
- SQL vs NoSQL
- Databases
- REST
- Postman
- Authentication & Security
- Jamstack
- PWA
- SPA
#Webdevelopment #JS #JavaScript #Html #Css #web
Follow @learn_webdevelopment for Web development tutorials
πππ
- HTML
- CSS
- CSS frameworks
- JS
- DOM
- UI and UX
- RWD
- CLI
- Git and GitHub
- React / Angular / Vue
- NPM
- Node.js
- SQL vs NoSQL
- Databases
- REST
- Postman
- Authentication & Security
- Jamstack
- PWA
- SPA
#Webdevelopment #JS #JavaScript #Html #Css #web
Follow @learn_webdevelopment for Web development tutorials
Forwarded from Programming Worldπ¨βπ» (β οΈAnonymus Venomβ οΈ)
β¨Pluralsight - Python Courses Collection 11 GB [ MEGA ] β¨
Linkπ:
https://mega.nz/folder/LDYQmD4A#BDrSInuxAjbO10lLbs0t3A
DISCLAIMER: No Copyright Infringement Intended, All Rights Reserved to the Actual Owner.
This content has been shared under Educational And Non-Profit Purposes Only
π¨Note:Download as fast as possible might get deleted at any time
Follow @Programmingworld_dev for more programming stuff
Linkπ:
https://mega.nz/folder/LDYQmD4A#BDrSInuxAjbO10lLbs0t3A
DISCLAIMER: No Copyright Infringement Intended, All Rights Reserved to the Actual Owner.
This content has been shared under Educational And Non-Profit Purposes Only
π¨Note:Download as fast as possible might get deleted at any time
Follow @Programmingworld_dev for more programming stuff
Forwarded from Programming Worldπ¨βπ» (β οΈAnonymus Venomβ οΈ)
π°Website Of the Dayπ°
β¨DevInterviewβ¨
Linkπ:
https://devinterview.io/
You can find full-stack, data structures & software architecture interview questions and answers for developers
Follow @Programmingworld_dev for more programming stuff
β¨DevInterviewβ¨
Linkπ:
https://devinterview.io/
You can find full-stack, data structures & software architecture interview questions and answers for developers
Follow @Programmingworld_dev for more programming stuff
Forwarded from Learn Web Development
β¨Web developement code snippets for freeβ¨
πΉCodepen
πΈCodesandbox
πΉCSS-Tricks
πΈHakim .se
πΉCode My UI
πΈCreativesFeed
πΉBootsnipp
πΈ30 seconds of code
πΉ30 Seconds of CSS
πΈStackoverflow
πΉCode to go
πΈTweetsnippet
πΉGitHub
πΈW3 Schools
πΉEnjoyCSS
πΈWeb Code Tool
#Webdevelopment #JS #JavaScript #Html #Css #web
Follow @learn_webdevelopment for Web development content
πΉCodepen
πΈCodesandbox
πΉCSS-Tricks
πΈHakim .se
πΉCode My UI
πΈCreativesFeed
πΉBootsnipp
πΈ30 seconds of code
πΉ30 Seconds of CSS
πΈStackoverflow
πΉCode to go
πΈTweetsnippet
πΉGitHub
πΈW3 Schools
πΉEnjoyCSS
πΈWeb Code Tool
#Webdevelopment #JS #JavaScript #Html #Css #web
Follow @learn_webdevelopment for Web development content
Forwarded from Learn Web Development
β¨Quick overview and tips to make you web page responsiveβ¨
https://telegra.ph/Quick-overview-and-tips-to-make-you-web-page-responsive-02-20
#Webdevelopment #JS #JavaScript #Html #Css #web
Follow @learn_webdevelopment for Web development content
https://telegra.ph/Quick-overview-and-tips-to-make-you-web-page-responsive-02-20
#Webdevelopment #JS #JavaScript #Html #Css #web
Follow @learn_webdevelopment for Web development content
Telegraph
Quick overview and tips to make you web page responsive
π ABSTRACT In this I had covered some quick tips and overview of RWD
Forwarded from Learn CSSβ’
β¨CSS Animation generators π¨β¨
β’ https://t.co/85G4Jsh1WZ
β’ https://t.co/4N7CrWPJgZ
β’ https://t.co/O7KpqDNqDc
β’ https://t.co/lh2n6duBex
β’ https://t.co/7FPOsSYjmf
β’ https://t.co/LvjzKmaHgS
#Css #cssresources #css3
Follow @learn_CSS_web for more CSS Content
β’ https://t.co/85G4Jsh1WZ
β’ https://t.co/4N7CrWPJgZ
β’ https://t.co/O7KpqDNqDc
β’ https://t.co/lh2n6duBex
β’ https://t.co/7FPOsSYjmf
β’ https://t.co/LvjzKmaHgS
#Css #cssresources #css3
Follow @learn_CSS_web for more CSS Content
Forwarded from Learn PHP
π° Learn PHP By Building A Web Application(Result Checking App) Courseπ°
π― What youβll learn
βοΈQuery MySql Database with PHP
βοΈBuild a Responsive Web Application with PHP, Bootstrap, Ajax, CSS, and HTML
βοΈYou will build an online Student Result Checking Portal
πLink :
https://drive.google.com/file/d/1WlvNgmWocaYbXNUP46ozyqtwIXp1tdNq/view?usp=drivesdk
#PHP #Webdevelopment #Backend
Follow @learn_php_web for PHP tutorial
π― What youβll learn
βοΈQuery MySql Database with PHP
βοΈBuild a Responsive Web Application with PHP, Bootstrap, Ajax, CSS, and HTML
βοΈYou will build an online Student Result Checking Portal
πLink :
https://drive.google.com/file/d/1WlvNgmWocaYbXNUP46ozyqtwIXp1tdNq/view?usp=drivesdk
#PHP #Webdevelopment #Backend
Follow @learn_php_web for PHP tutorial