Analog is a continuously varying signal, like a sine wave. And, at any instant in time, you can measure the actual amplitude of that part of the signal.
A digital signal is a digital representation of samples of an analog signal that has been coded into a bit stream of binary digits (1s and 0s).
Let's say an analog sine wave has a maximum amplitude of 8 volts peak to peak, and it goes from 4 volts, to positive 8 volts, back down to 4 volts, down again to zero volts, and back up to 4 volts. And we're going to sample this signal 5 times: at 4 volts, at 8 volts, again at 4 volts, at 0 volts, and finally back at 4 volts.
In this example, we will assign the simple coding that the binary value is the amount of volts in the sampled signal. For a 4-digit binary number, the right-most digit is the 1's column, the second from the right is the 2's, the third is the 4's, and the 4th is the 8s. So, binary 0000 = 0 volts. 0001 = 1 volt, 0010 = 2 volts, 0011 = 3 volts ... and 1000 = 8 volts.
So, our sample stream would be 0100 (4 volts), 1000 (8 volts), 0100 (4 volts), 0000 (0 volts), and 0100 (4 volts). And, our digital bit stream representation of that single analog sine wave would be 01001000010000000100. And, this would just look like a square wave signal, where each 1 is some positive value (like 1 volt) and each 0 is just zero volts.
Of course, you can have any detectable change in a signal represent the 1s and 0s. For example, in a fax transmission over a regular phone line, you can actually hear the screeching sound of the tones being sent out, going up and down at different frequencies. They then assign a higher frequency tone to be the 1s of the digital stream and the lower frequency tones to be the 0s. And, the receiver at the other end decodes this digital signal and outputs the transmitted images.