Learn Html
353 subscribers
101 photos
2 videos
34 files
263 links
All info and tutorial of Html
For HTML: @html_web_learn
For CSS: @CSS_web_learn
For JS: @JavaScript_js_learn
For PHP: @learn_php_web
For Programming courses @Programmingworld_dev
For CEH,Cybersec: @CyberPunk_anonymous
Download Telegram
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:
<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 CSSβ„’
✨CSS display Flex cheat sheet✨
Forwarded from Learn CSSβ„’
✨CSS positioning cheat sheet✨
Forwarded from Learn CSSβ„’
✨CSS display Grid cheat sheet✨
Forwarded from Learn CSSβ„’
✨A quick reference of the CSS box-model ✨
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.
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
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
HTML Tip🚨

The "poster" attribute specifies an image to be shown while the video is downloading, or until the user hits the play button
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
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
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
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
πŸ”°HTML TIPπŸ”°

HTML has an email input type. It automatically checks whether a string provided is really a valid email address. Adding required to the element also ensures that the input field contains some text.

You don't necessarily need JavaScript for form validation.
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
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
HTML Tip🚨

The iframe sandbox attribute enables an extra set of restrictions for the content in the iframe

For example, In this particular case form submission is allowed