Computer Science, asked by Spackle1017, 10 months ago

How to align an inline image in html without using CSS?

Answers

Answered by RAthi21
2

hello!

____

<div class="row">

<div class="column">

<img src="img_snow.jpg" alt="Snow"

style="width:100%">

</div>

<div class="column">

<img src="img_forest.jpg" alt="Forest"

style="width:100%">

</div>

<div class="column">

<img src="img_mountains.jpg" alt="Mountains"

style="width:100%">

</div>

</div>

Answered by wikasmushtaq
3

hellO!

I know this question is over 6 years old, but still, I would like to share my method using tables and this won't require any CSS.

<table><tr><td><img src="loading.gif"></td><td> Loading...</td></tr></table>

Cheers! Happy Coding

Explanation:

MARK BRAINLIEST❤

Similar questions