1 (or "high") and 0 (or "low") are almost always referring to voltage, and in modern systems those voltages are 0V and 3.3V (or perhaps 5V). However that information is not enough to understand what's going on.
From your question it's clear that you don't have a grasp of what voltages are, how it's related to current, or anything really that can help here, but I can give you some pointers.
When we say "voltage" we are really talking about the difference in some property between two points in a circuit. A 9V battery, for instance, has a difference of 9V between its two terminals, which you can measure with a voltmeter.
However, that difference could mean that one terminal is at +1000V and the other is 9V higher than that, at +1009V. It's only a difference, and because of that, for convenience, we call one of them "zero volts" and refer to other terminal as +9V. It's like when I say I am 6 feet tall, I'm referring to the distance between my head and my feet.
If I then stand on a chair, 2 feet off the ground, am I now 8 feet tall? No, I'm still 6 feet tall.
So get this into your head, when someone says "ten volts", they are simply referring to a voltage relative to somewhere else in a circuit. They are simply saying that this point in the circuit has 10 more volts than this other point in the circuit. If we all agree on where we shall call "ground", or "zero volts", we know exactly what they mean.
So in the following circuit, the ground symbol is the little triangle at the bottom, and that is what I will call "zero volts". Everything else in the circuit will have some "voltage" relative to this zero-point. Everything connected to that point, with a wire, will also be zero volts, because that's what wires do - join things together to all be the at the same voltage:

simulate this circuit – Schematic created using CircuitLab
There are other nodes (wires) in that circuit, and other components, but the most important thing for now is to understand that the battery's job is to make the top left wire 9V higher in voltage than the wires connected to ground.
Now you know what the wire does, and the battery, we can introduce the switch. The switch is something that can connect two things together, like a wire does, or disconnect those two things from each other. With some imagination, it's possible to see how we can use switches to choose between voltages:

simulate this circuit
Firstly, note that everything connected to node A has voltage of +9V, relative to our designated ground (0V) node B. Similarly, everything connected to node B has a voltage of 0V.
In the box "GATE1", switch SW1 is open, and does not connect node P to node A, but the other switch, SW2, is closed, physically joining node P to node B. This connection brings the voltage of node P to same as node B, which is at 0V, as if it were connected with a wire. If we interpret +9V to mean a logic "high", and 0V as "low", then we can say that the output P of GATE1 is low.
By contrast, the output Q of GATE2 must be "high", because SW3 joins node Q to node A, at +9V relative to ground.
Bad things happen if SW1 and SW2 are closed simultaneously, or if SW3 and SW4 are closed simultaneously, so we must take care to avoid those conditions.
Now all this may seem obvious to you, or not, but here we have an example of boxes (gates) that are able to control the voltage of their outputs depending the states of switches inside them, and which derive their "high" and "low" output signal voltages from a separate, external power supply, the battery. In other words, they are able to provide "logic levels" to the outside world, purely by controlling which voltage their output terminals are physically connected to.
That model uses physical switches, but in real digital logic integrated circuits, the switches are replaced with transistors. However their behaviour is identical to the switches (at least for digital systems), in the sense that an open switch is simply an infinite electric resistance, and a closed switch is a resistance of zero ohms, functionally identical to a "wire". Instead of physically moving metallic contacts, the changes between the states of infinite and zero resistance is performed electronically.
Now extend the model to include circuitry that can detect what voltage is present at one or more input nodes, (again using transistors), and depending on their states (some combination of highs and lows), choose to set its own output voltage to high or low, as explained above. We are able to produce AND gates, OR gates, NOT gates (inverters) and any combination thereof quite easily, using transistors, and sometimes other components.
Just like above, digital logic ICs have two connections for 0V and +9V "supplies" (or more often +3.3V or +5.0V), outputs whose voltages are controlled by internal transistor switches, to perform the routing of those supply voltages to output pins, and input pins where we "apply" voltages which the internal circuitry interprets to choose which output switches are to be closed and which should be open.
That's how we use voltages to represent logic "high" and "low". I haven't mentioned electric current, or how transistors work, because it's all a vast topic, but that should get you started.
Edit: I realise I haven't explained what voltage means, what a "volt" is, because it's also a big topic. It's probably a topic for a physics forum.