1The <img> tag will help you add image in html coding... it contains attributes:
2
31) src - usage <img src="">, it states the source of the image..
42) alt - usage <img src="" alt=""> it is the alternative text if you image failed to load...
5
6Thank you and HAPPY CODING.
7Feel free to give a upvote.. ^^
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>
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>