how to move text wherever you want css code example
Example 1: how to move text down in css
p {
padding-top: 2em;
}
Example 2: how to move an image up in css
.image{
position: relative;
top: -125px;
}
p {
padding-top: 2em;
}
.image{
position: relative;
top: -125px;
}