What is the simplest way to put space between an image and the text in a website?
https://retetetraditionale.000webhostapp.com/
I have made a small site as you can see but there is no space between images and text
What is the simplest way to put space between an image and the text in a website?
https://retetetraditionale.000webhostapp.com/
I have made a small site as you can see but there is no space between images and text
align: left
is outdated, use the style
attribute and float
property
try not to use <br>
whenever possible
this:
-250 g branza de vaci
-3 linguri faina
-1 bucata ou
-1 lingurita bicarbonat de sodiu
-1 lingurita otet
-1 ulei pentru prajit
-300 ml smantana
-1 ceasca gem dupa gust
should really be a list, see the docs:
the easiest way to creating some spacing is either <element style="margin-left: 10px">
, if margin-left is not working, you can try padding-left.
useful documentation:
ideally you would use a stylesheet, not the style attribute