Creating pages in HTML using permalinks and adding images involves a few key steps. Here's a simplified guide:
Step 1: Selecting an Image from the Media Library
-
Access Your Media Library: Go into your MEDIA LIBRARY and double click on the image you want to use for your HTML page.
-
Choose the Desired Image: Double-click on the image you want to use. This action opens a details view where you can see the image's URL (permalink).
Step 2: Inserting Images in HTML
-
Basic Image Insertion: Use the
<img>
tag to add the chosen image. Replacepath/to/your/image.jpg
with the actual path or permalink of your image.
Insert Images: To add images, use the <img>
tag.
<img src="path/to/your/image.jpg" alt="Description of the image">
Adjust Width and Height:
<img src="path/to/your/image.jpg" style="width:200px; height auto;" alt="Description of the image">
Images with offsite links example:
<a target="blank_" href="https://www.example.com/destination">`
<img src="permalink.jpg<-- permalink" alt="Description of the image">
</a>
Comments
0 comments
Article is closed for comments.