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
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.
✨CSS is deep but revolves around only few important concepts✨
👇
- Grid
- Flex
- Positioning
- Background
- Color
- Height and Width
- Margin and Padding
- Border
Master these because you will use them mostly
👇
- Grid
- Flex
- Positioning
- Background
- Color
- Height and Width
- Margin and Padding
- Border
Master these because you will use them mostly
✨Roadmap to learn CSS 🎨🛣️✨
- Selectors
- Units
- Background
- Color
- Box model
- Height and width
- Margin and padding
- Border
- Positioning
- display
- Layouts
- Grid and Flex
- Alignment
- Fonts
- Pseudo-classes
- Media query
- Animation
- Preprocessors
- CSS Frameworks
#Webdevelopment #Css
Follow @learn_CSS_web for more CSS Content
- Selectors
- Units
- Background
- Color
- Box model
- Height and width
- Margin and padding
- Border
- Positioning
- display
- Layouts
- Grid and Flex
- Alignment
- Fonts
- Pseudo-classes
- Media query
- Animation
- Preprocessors
- CSS Frameworks
#Webdevelopment #Css
Follow @learn_CSS_web for more CSS Content
Learn CSS™ pinned «✨Roadmap to learn CSS 🎨🛣️✨ - Selectors - Units - Background - Color - Box model - Height and width - Margin and padding - Border - Positioning - display - Layouts - Grid and Flex - Alignment - Fonts - Pseudo-classes - Media query - Animation - Preprocessors…»
✨An Interactive Guide to CSS Transitions✨
https://www.joshwcomeau.com/animation/css-transitions/
#Css #cssresources #css3
Follow @learn_CSS_web for more CSS Content
https://www.joshwcomeau.com/animation/css-transitions/
#Css #cssresources #css3
Follow @learn_CSS_web for more CSS Content