We will learn the purpose of CSS in HTML and how to use styles on a web page. This short lecture is really important for beginners. One must know what CSS selectors are? and how to use them.

Free Front-end Web Development course in Urdu - Class 6 - HTML5 Form & advanced fields
We will learn HTML5 form and HTML5 advanced fields in today's lecture. Don't miss this lecture as I am sharing some advanced fields that are not commonly used today but very powerful.
WATCH VIDEO HERE ==> https://www.youtube.com/watch?v=36mIorrKHro

Convert numbers into words - Excel - 100% Working
Click here for this code explanation. The complete procedure is in the video tutorial.
Option Explicit 'Main Function Function SpellNumber(ByVal MyNumber) Dim Rupeess, Paisas, Temp Dim DecimalPlace, Count ReDim Place(9) As String Place(2) = " Thousand " Place(3) = " Million " Place(4) = " Billion " Place(5) = " Trillion " MyNumber = Trim(Str(MyNumber)) DecimalPlace = InStr(MyNumber, ".") If DecimalPlace > 0 Then Paisas = GetTens(Left(Mid(MyNumber, DecimalPlace + 1) & _ "00", 2)) MyNumber = Trim(Left(MyNumber, DecimalPlace - 1)) End If Count = 1 Do While MyNumber <> "" Temp = GetHundreds(Right(MyNumber, 3)) If Temp <> "" Then Rupeess = Temp & Place(Count) & Rupeess If Len(MyNumber) > 3 Then MyNumber = Left(MyNumber, Len(MyNumber) - 3) Else MyNumber = "" End If Count = Count + 1 Loop Select Case Rupeess Case "" Rupeess = "No Rupeess" Case "One" Rupeess = "One Rupees" Case Else Rupeess = Rupeess & " Rupeess" End Select Select Case Paisas Case "" Paisas = " and No Paisas" Case "One" Paisas = " and One Paisa" Case Else Paisas = " and " & Paisas & " Paisas" End Select SpellNumber = Rupeess & Paisas End Function Function GetHundreds(ByVal MyNumber) Dim Result As String If Val(MyNumber) = 0 Then Exit Function MyNumber = Right("000" & MyNumber, 3) ' Convert the hundreds place. If Mid(MyNumber, 1, 1) <> "0" Then Result = GetDigit(Mid(MyNumber, 1, 1)) & " Hundred " End If ' Convert the tens and ones place. If Mid(MyNumber, 2, 1) <> "0" Then Result = Result & GetTens(Mid(MyNumber, 2)) Else Result = Result & GetDigit(Mid(MyNumber, 3)) End If GetHundreds = Result End Function Function GetTens(TensText) Dim Result As String Result = "" ' Null out the temporary function value. If Val(Left(TensText, 1)) = 1 Then ' If value between 10-19... Select Case Val(TensText) Case 10: Result = "Ten" Case 11: Result = "Eleven" Case 12: Result = "Twelve" Case 13: Result = "Thirteen" Case 14: Result = "Fourteen" Case 15: Result = "Fifteen" Case 16: Result = "Sixteen" Case 17: Result = "Seventeen" Case 18: Result = "Eighteen" Case 19: Result = "Nineteen" Case Else End Select Else ' If value between 20-99... Select Case Val(Left(TensText, 1)) Case 2: Result = "Twenty " Case 3: Result = "Thirty " Case 4: Result = "Forty " Case 5: Result = "Fifty " Case 6: Result = "Sixty " Case 7: Result = "Seventy " Case 8: Result = "Eighty " Case 9: Result = "Ninety " Case Else End Select Result = Result & GetDigit _ (Right(TensText, 1)) ' Retrieve ones place. End If GetTens = Result End Function Function GetDigit(Digit) Select Case Val(Digit) Case 1: GetDigit = "One" Case 2: GetDigit = "Two" Case 3: GetDigit = "Three" Case 4: GetDigit = "Four" Case 5: GetDigit = "Five" Case 6: GetDigit = "Six" Case 7: GetDigit = "Seven" Case 8: GetDigit = "Eight" Case 9: GetDigit = "Nine" Case Else: GetDigit = "" End Select End Function

[FIX] Sublime Error - There Are Not Packages Available For Installation - 100% working
![]() |
[FIX] Sublime Error - There Are Not Packages Available For Installation - 100% working |
Hi Guys, If you are tired of searching solution for the sublime text editors error which says "There are no packages available for installation".Then try this solution. It will work like a charm;). Let me know if it works or not and if you have more problems. I will try to help if I know the solution.
CODE: "channels":["https://erhan.in/channel_v3.json"],

Free Front-end Web Development course in Urdu - Class 5 - Table, list, console
![]() |
Free Front-end Web Development course in Urdu - Class 5 - Table, list, console |
WATCH VIDEO HERE ==> https://www.youtube.com/watch?v=ujqM8rAVP4Y
Hi Guys,
We will learn HTML structure; Table, list and how to use the console for debugging.
Please go through below URL for HTML tags and attributes.
URL: https://www.w3schools.com/tags/default.asp
Feel free to ask question :).
#website: www.mrmoeed.com
#email: hello@mrmoeed.com

Free Front-end Web Development course in Urdu - Class 4 - HTML Tag, Element, Attribute
![]() |
Free Front-end Web Development course in Urdu - Class 4 - HTML Tag, Element, Attribute |
WATCH VIDEO HERE ==> https://www.youtube.com/watch?v=gUjQZSW2rjk
Hi Guys,
Today is our first #HTML5 class, We will learn HTML structure; Tags, elements and Attributes.
We will learn to validate our final HTML file using W3 Validator.
URL: https://validator.w3.org/
Feel free to ask question :).
#website: www.mrmoeed.com
#email: hello@mrmoeed.com

Free Front-end Web Development course in Urdu - Class 3 - Photoshop Slice Tool
![]() |
Free Front-end Web Development course in Urdu - Class 3 - Photoshop Slice Tool |
WATCH FULL VIDEO HERE ==> https://www.youtube.com/watch?v=LQJxjtkdyqc
In Today's class, we will learn Photoshop Slice tool and how to save images for the web. This lecture is important because I will be sharing some shortcuts and short keys that can make our work faster and I will be using the same keys in future lectures. So please go through complete lecture write down the keys so you don't get confused in future lectures.
Short Keys:
Save for web = CTRL + ALT + SHIFT + S
New canvas = CTRL + N
Copy = CTRL + C
Copy all selected area = CTRL + SHIFT + C
Paste = CTRL + V
Move tool = V
Marquee tool = M
Text tool = T
Hand tool = H OR press spacebar on keyboard and drag with mouse
Zoom tool = Z OR CTRL +, CTRL -
Show / hide Guides = CTRL + H
#website: www.mrmoeed.com
email: hello@mrmoeed.com

Front End Web Development course in Urdu - Class 2 - Photoshop Interface - Short Keys
Welcome to Front End Web Development course in Urdu.
![]() |
Front End Web Development course in Urdu - Class 2 - Photoshop Interface - Short Keys |
VIDEO ON YOUTUBE: URL ==> https://www.youtube.com/watch?v=jAqBVGtY5O8

Front End Web Development course in Urdu - Class 1 - Understanding Photoshop
Front End Web Development course in Urdu - Class 1 - Understanding Photoshop
A complete Free Front End Web Development course in the Urdu language.
What will you learn in this course? #Photoshop Basic in Urdu #HTML in Urdu #CSS in Urdu #JavaScript in Urdu #jQuery in Urdu #Responsive design in Urdu #Bootstrap in Urdu #Wordpress in Urdu #website: www.mrmoeed.com #email: hello@mrmoeed.com
A complete Free Front End Web Development course in the Urdu language.
VIDEO ON YOUTUBE: URL ==> https://www.youtube.com/watch?v=SUHWzD6DTJM
![]() |
Front End Web Development course in Urdu - Class 1 - Understanding Photoshop |
What will you learn in this course? #Photoshop Basic in Urdu #HTML in Urdu #CSS in Urdu #JavaScript in Urdu #jQuery in Urdu #Responsive design in Urdu #Bootstrap in Urdu #Wordpress in Urdu #website: www.mrmoeed.com #email: hello@mrmoeed.com

Free Front-end Web Development course in Urdu - Introduction
![]() |
Free Front-end Web Development course in Urdu - Introduction |
Complete Free Front-end Web Development Course: Become A Professional Website Developer Today!
VIDEO ON YOUTUBE: URL ==> https://www.youtube.com/watch?v=bpqHVwRfct8
