1<p><img src="image/example.jpg" alt="Example1" width="193" height="130"> (width:193px, height:130px)</p>
2
3<p><img src="image/example.jpg" alt="Example2" width="96" height="65"> (width:96px, height:65px)</p>
4
5<p><img src="image/example.jpg" alt="Example3" width="100%" height="130"> (width:100%, height:130px)</p>
6
1<img src="flowers.jpg" alt="flowers">
2
3//Always add the image type (jpg,png, etc) Adding alt text
4is also good coding practice :)
1_________________________________________________________________________________________
2
3### Image(s) ###
4
5
6### You can easily add a img with this line of code :
7<img src="Type here the location of your picture" />
8
9### But you can also add a style to it like this :
10<img src="Type here the location of your picture" class="type here the name of your style" />
11
12### If you don't know how to make a style? i will be maybe uploading a tutorial on it later
13
14
15
16### If you want to keep it easy and not add a style you can also add details in the command itself
17### like this :
18<img src="Type here the location of your picture" width="type here a amount of pixels" />
19
20### if you really want to customize it than i would recommend using a style
21
22
23
24## Here is an example i made:
25<img src="src/picture_beach.jpg" class="pictures" />
26
27________________________________________________________________________________________
28
29# If this code helped you please leave a like on it. If you want to see more of this follow me
30# Or just take a look at another answer of my answers
31#
32# THIS CODE HAS BEEN MADE BY : Vast Vicuña
1<!DOCTYPE html>
2<html>
3 <head>
4 <title>HTML img Tag</title>
5 </head>
6
7 <body>
8 <img src="/html/images/test.png" alt="Simply Easy Learning" width="200"
9 height="80">
10 </body>
11</html>