Level no.9

Lecture no.9

How to upload IMAGE on blogger through HTML?           

To upload image on blogger through html , we image  tag.

In html we first apply image tag and then in src we paste the address of image, which we get from google.In html this will show image and then copy the whole code and click on blogger. On blogger left top you will see a pen click on it and select HTML view then paste code.The image is also shoe here.


Example:

<img src="address of image"  alt="error" width="150">.

Output:

The pic is uploaded. 

__________________________________________________________

How to see someone's Website in html ?

To upload website link we use anchor tag with href attribute. 

Syntax:

<a href="link of website "> Alisha website</a>

Code:

<!DOCTYPE html>
<html>
<head> 
<title> Opening Website  </title>
</head>
<body>
<p>
<a href="https://webwizardsinstitute.blogspot.com/2023/07/level-no9.html "> Alisha website</a>
</p>
</body>
</html>

Output:

This will open the website.


To open it on New Tab 

The syntax is same as for opening in website, just the addition of target attribute.

Syntax:

<a href="link of website " target="_ blank "> Alisha website</a>


Code:

<!DOCTYPE html>
<html>
<head> 
<title> Opening Website  </title>
</head>
<body>
<p>
<a href="https://webwizardsinstitute.blogspot.com/2023/07/level-no9.html " target="_blank"> Alisha website</a>
</p>
</body>
</html>

Output:

This will open the website on new tab .

_______________________________________________


To open any Social media or Website with pic ?

 In this scenario we just add image tag in between of anchor tag.Showing you the synatx.

Synatx:

<a href="link of social media icon " > < img src="link of image" alt="error"> </a>.












pic on blogger is pasting

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Maxime necessitatibus voluptates quo dolorem deleniti! Minus vel libero, at, quaerat repellat, inventore ad deserunt quam accusantium cupiditate aliquid. Expedita, quam minima?
error occured

Comments

Popular posts from this blog

Level no.4

Level no.21

Level no.3