- 3
How to add image in html and css. I am just starting out. Thanks.
4 Réponses
+ 3
as you are "just starting out", I would advise to not burn your first steps: be patient, and you will encounter the lesson about "how to add image" in both htlm and css when the time to learn them will outcome ;P
0
Use the img tag. for example
<img src="your_image_link.jpg" />
you can add more attributes to it like it alignment or the alt="some_img" if your image fails to load.
0
<body>
<p><img src="image.png" ></p>
</body>