Professional Logo Design in Urdu | Adobe Illustrator

Hi Guys, In today's lecture, we will learn how to trace logo from the raster image using Adobe Illustrator.

Professional Logo Design in Urdu | Adobe Illustrator



▲ WATCH COMPLETE VIDEO HERE ==> https://www.youtube.com/watch?v=aRECPT9L6SM




spacer

Free Frontend Web Development course in Urdu - Class 15 - CSS ( entity, Animation, and Responsive)

Free Frontend Web Development course in Urdu - Class 15 - CSS  ( entities, Animation, transition, and Responsive)

WATCH FULL VIDEO HERE ==> https://www.youtube.com/watch?v=0PQVxDaP7E4


Hi Guys,

In today's lecture, we will learn CSS #entity, #Animation, #transition, and #Responsive (Media Queries).

Entities:   =   00:22
Animation:  =  03:50
Transition:   =  13:00
Responsive (Media Queries):  =  18:09

Feel free to ask question :).
spacer

Free Frontend Web Development course in Urdu - Class 14 - CSS ( Units, viewport, and functions)

Free Frontend Web Development course in Urdu - Class 14 - CSS  ( Units, viewport, and functions)

WATCH FULL VIDEO HERE ==> https://www.youtube.com/watch?v=-anf0_NpmTY


Hi Guys,

In today's lecture, we will learn CSS #Units, #viewport, and #functions.

UNITS:  PX, EM, REM  =   00:14
VIEWPORT: VH, VW, VMIN, VMAX  =  08:55
FUNCTIONS: CALC()  =  18:50

Feel free to ask question :).
spacer

Free Frontend Web Development course in Urdu - Class 13 - combinators, Pseudo Class,

Free Frontend Web Development course in Urdu - Class 13 - CSS  ( combinators, Pseudo Class, Pseudo Elements and Sprites)

WATCH FULL VIDEO HERE ==> https://www.youtube.com/watch?v=C1KupT5gauA


Hi Guys,

In today's lecture, we will learn CSS #Combinators, #PseudoClass, #PseudoElements, and #Sprites.

Combinators =   00:42
Pseudo Class =  08:59
Pseudo Elements =  12:35
Sprites =  18:15

Feel free to ask question :).
spacer

Free Frontend Web Development course in Urdu - Class 12 - Understanding Flexbox - Part 2

Free Frontend Web Development course in Urdu - Class 12 - Understanding Flexbox - Part 2 Hi Guys, We will cover remaining concepts related to Flexbox in this lecture. To watch 1st Part please visit URL below. https://youtu.be/sTy9_e61Trs

WATCH COMPLETE VIDEO HERE ==> https://www.youtube.com/watch?v=6wvVOi4_hio

spacer

Free Frontend Web Development course in Urdu - Class 11 - Understanding Float / Flexbox

Free Frontend Web Development course in Urdu - Class 11 - Understanding Float / Flexbox CSS - Part 1 Hi Guys, From now on I will be sharing my live online classes; you might hear multiple voices of students attending the class. I will cut out the Question answer session so that you will watch actual training only. In our today's class we will learn Layouts using #float property(float left, float right, clear both) and we will start Flexbox too. This is the first part for Flexbox soon you will have the 2nd part for #Flexbox.

WATCH COMPLETE VIDEO HERE ==>> https://www.youtube.com/watch?v=sTy9_e61Trs


spacer

Free Frontend Web Development course in Urdu - Class 10 - Understanding position property

We will learn position property in this lecture. I will explain in every detail so that you know exactly when to apply absolute and relative property.

WATCH COMPLETE VIDEO HERE ==> https://www.youtube.com/watch?v=G3hvWVY3Li0

spacer

Free Frontend Web Development course in Urdu - Class 9 - Understanding nth-child

We will learn very important selector called nth-child in this lecture. I will explain in every detail so that you know exactly when to apply Understanding nth-child and nth-of-type selectors.

WATCH COMPLETE VIDEO HERE ==>> https://www.youtube.com/watch?v=wgw5gaWDkkM

spacer

Free Frontend Web Development course in Urdu - Class 8 - Understanding Padding & Margin

We will learn very important property called Padding/margin in this lecture. People often remain too confused in these two terms, I will explain in every detail so that you know exactly when to apply #padding and when to apply #margin.

WATCH FULL VIDEO HERE ==>> https://www.youtube.com/watch?v=xUHlXUJ296k

spacer

Free Frontend Web Development course in Urdu - Class 7 - Understanding CSS / CSS Selectors

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.

WATCH COMPLETE VIDEO HERE ==>> https://www.youtube.com/watch?v=ytClW9P9nvE

spacer

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



spacer

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


spacer

[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"],



spacer

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
spacer

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
spacer

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
spacer

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
Front End Web Development course in Urdu - Class 2 - Photoshop Interface - Short Keys
In Today's class, we will learn Interface and working with Photoshop files. 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. #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
spacer

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.


VIDEO ON YOUTUBE: URL ==> https://www.youtube.com/watch?v=SUHWzD6DTJM

Front End Web Development course in Urdu - Class 1 - Understanding Photoshop
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
spacer

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


Course Content: #Photoshop Slicing #HTML5 & #CSS3 #Javascript #jQuery #Bootstrap #Responsive Design #Testing & Debugging #WordPress Installation Website: www.mrmoeed.com Facebook: https://www.facebook.com/moeedsb Email: hello@mrmoeed.com
spacer